/* ============================================
   Hillcrest Kennel – PPC Landing Page
   Modern, conversion-optimized design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- Custom Properties --- */
:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --navy-mid: #334155;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --gold-light: #fbbf24;
  --green: #22c55e;
  --green-soft: #dcfce7;
  --text: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 100px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.04), 0 1px 2px rgba(15,23,42,0.06);
  --shadow: 0 4px 6px -1px rgba(15,23,42,0.05), 0 2px 4px -2px rgba(15,23,42,0.05);
  --shadow-md: 0 10px 30px -5px rgba(15,23,42,0.08), 0 4px 6px -4px rgba(15,23,42,0.03);
  --shadow-lg: 0 20px 50px -10px rgba(15,23,42,0.12);
  --shadow-gold: 0 8px 30px -4px rgba(245,158,11,0.3);
}

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

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

/* --- Sticky Mobile Call Bar --- */
.mobile-call-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    text-align: center;
    padding: 0;
    box-shadow: 0 -4px 20px rgba(15,23,42,0.2);
  }

  .mobile-call-bar a {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  }

  .mobile-call-bar a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center / contain;
    flex-shrink: 0;
  }

  body {
    padding-bottom: 56px;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: url('../images/hero-boarding-dog.jpg') center center / cover no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 72px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15,23,42,0.82) 0%,
    rgba(15,23,42,0.72) 40%,
    rgba(15,23,42,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
}

.hero-badge svg {
  flex-shrink: 0;
}

.hero h1 {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.035em;
}

.hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.hero-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 0;
}

.hero-stars {
  display: flex;
  gap: 2px;
}

.hero-stars svg {
  width: 18px;
  height: 18px;
}

.hero-review-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-review-text strong {
  color: #fff;
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-family: inherit;
  transition: all 0.2s ease;
}

.btn-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.2px;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 35px -4px rgba(245,158,11,0.4);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-hero {
  font-size: 1.1rem;
  padding: 18px 40px;
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--navy);
  padding: 0;
  border-bottom: none;
  position: relative;
}

.trust-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}

.trust-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

/* --- Section Spacing --- */
.pricing, .what-to-expect, .requirements, .hours-location, .faq, .reviews-section, .holiday-boarding {
  padding: 72px 0;
}

/* --- Section Headers --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* --- Pricing Section --- */
.pricing {
  text-align: center;
  background: var(--surface);
}

.pricing h2 {
  margin-bottom: 8px;
}

.pricing-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 36px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 12px;
}

.price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: all 0.2s ease;
  position: relative;
}

.price-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.price-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
}

.price-card.popular::before {
  content: "Most Common";
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.price-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.price-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--navy-mid);
}

.price-card-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.price-card-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.price-card-right {
  text-align: right;
  flex-shrink: 0;
  min-width: 80px;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.price-unit {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  margin-top: 12px;
}

/* --- Reviews Section --- */
.reviews-section {
  background: var(--surface-alt);
}

.reviews-section h2 {
  margin-bottom: 8px;
}

.reviews-header {
  margin-bottom: 36px;
}

.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.reviews-score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.reviews-stars-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews-stars-row {
  display: flex;
  gap: 2px;
}

.reviews-stars-row svg {
  width: 16px;
  height: 16px;
}

.reviews-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 8px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- What to Expect --- */
.what-to-expect {
  background: var(--surface);
}

.what-to-expect h2 {
  margin-bottom: 8px;
}

.expect-header {
  margin-bottom: 40px;
}

.expect-grid {
  display: grid;
  gap: 40px;
}

.expect-list {
  list-style: none;
  padding: 0;
}

.expect-list li {
  padding: 14px 0 14px 40px;
  position: relative;
  font-size: 0.98rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  line-height: 1.6;
}

.expect-list li:last-child {
  border-bottom: none;
}

.expect-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

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

.expect-images img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 180px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.expect-images img:first-child {
  grid-column: 1 / -1;
  height: 240px;
}

.expect-images img:hover {
  transform: scale(1.02);
}

/* --- Requirements --- */
.requirements {
  background: var(--surface-alt);
}

.requirements h2 {
  margin-bottom: 8px;
  text-align: center;
}

.req-header {
  margin-bottom: 36px;
  text-align: center;
}

.req-grid {
  display: grid;
  gap: 16px;
}

.req-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

.req-card:hover {
  box-shadow: var(--shadow-md);
}

.req-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.req-card ul {
  list-style: none;
  padding: 0;
}

.req-card ul li {
  padding: 7px 0 7px 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.req-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* --- Hours & Location --- */
.hours-location {
  background: var(--surface);
}

.hours-location h2 {
  margin-bottom: 36px;
  text-align: center;
}

.hl-grid {
  display: grid;
  gap: 32px;
}

.hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.hours-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  background: var(--surface);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-secondary);
}

.address {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

.hl-map iframe {
  border-radius: var(--radius-lg);
  width: 100%;
  min-height: 300px;
  border: 1px solid var(--border);
}

/* --- Holiday Boarding --- */
.holiday-boarding {
  background: var(--surface-alt);
  text-align: center;
}

.holiday-boarding h2 {
  margin-bottom: 12px;
}

.holiday-boarding p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 24px;
}

/* --- FAQ --- */
.faq {
  background: var(--surface);
}

.faq h2 {
  margin-bottom: 36px;
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 18px 44px 18px 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color 0.2s;
  line-height: 1.5;
}

.faq-item summary:hover {
  color: var(--gold-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-alt);
  transition: all 0.2s;
}

.faq-item[open] summary::after {
  content: "\2212";
  background: var(--gold);
  color: #fff;
}

.faq-item p {
  padding: 0 0 18px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Final CTA --- */
.final-cta {
  padding: 80px 0;
  text-align: center;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,158,11,0.08) 0%, transparent 60%);
}

.final-cta .container {
  position: relative;
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.final-cta-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.final-cta .btn-hero {
  font-size: 1.25rem;
  padding: 20px 48px;
}

.final-address {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

/* --- Footer --- */
.footer {
  padding: 24px 0;
  text-align: center;
  background: #080c14;
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  font-weight: 500;
}

/* ============================================
   Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    min-height: 540px;
    padding: 80px 32px 88px;
  }

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

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .trust-item {
    padding: 18px 32px;
    font-size: 0.82rem;
  }

  .pricing-cards {
    max-width: 560px;
  }

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

  .expect-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .expect-images img:first-child {
    height: 280px;
  }

  .expect-images img {
    height: 200px;
  }

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

  .hl-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .pricing, .what-to-expect, .requirements, .hours-location, .faq, .reviews-section, .holiday-boarding {
    padding: 88px 0;
  }
}

/* ============================================
   Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .pricing, .what-to-expect, .requirements, .hours-location, .faq, .reviews-section, .holiday-boarding {
    padding: 100px 0;
  }

  .final-cta {
    padding: 100px 0;
  }

  .final-cta h2 {
    font-size: 2.5rem;
  }
}


/* ============================================
   Site Nav + Footer (added for migrated site)
   ============================================ */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-decoration: none;
  flex-shrink: 0;
}
.site-brand-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.site-brand-text { line-height: 1.1; }
.site-brand-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}
.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.15s;
  padding: 8px 0;
  position: relative;
}
.site-nav a:hover { color: var(--gold-dark); }
.site-nav a.active { color: var(--gold-dark); }
.site-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.site-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #ffffff;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  flex-shrink: 0;
}
.site-header-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.site-header-cta svg { flex-shrink: 0; }

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}

@media (max-width: 900px) {
  .site-header-inner { padding: 14px 20px; gap: 12px; }
  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15,23,42,0.1);
    transform: translateY(-200%);
    transition: transform 0.25s ease;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
  }
  .site-nav a:last-child { border-bottom: none; }
  .site-nav a.active::after { display: none; }
  .mobile-nav-toggle { display: block; }
  .site-header-cta { padding: 10px 14px; font-size: 0.8rem; }
  .site-header-cta span.cta-full { display: none; }
}

@media (max-width: 500px) {
  .site-brand-text small { display: none; }
  .site-brand { font-size: 1rem; }
}

/* ============================================
   Full Site Footer — Heritage Editorial
   --------------------------------------------
   All inner selectors are scoped under `.site-footer` to keep specificity
   at 0,2,x+ so heritage.css's body-wide rules (`.heritage h3 { ... }`) can't
   recolor footer text on heritage-themed pages.
   ============================================ */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 96px 0 56px;
  margin-top: 0;
}
.site-footer a { transition: color 0.15s, border-color 0.15s; }

.site-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Masthead — centered "Est. · 1955" with neutral hairlines */
.site-footer .masthead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 88px;
}
.site-footer .masthead-rule {
  display: block;
  width: 88px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.site-footer .masthead-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.site-footer .masthead-bullet {
  color: rgba(245, 158, 11, 0.65);
  font-size: 1.25em;
  line-height: 0;
  transform: translateY(-1px);
}
.site-footer .masthead-year {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.32em;
}

/* Grid */
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr;
  gap: 56px;
  position: relative;
}
.site-footer-col { position: relative; }
.site-footer-col + .site-footer-col::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  bottom: 12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* Brand */
.site-footer .site-footer-brand h3 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 24px;
}
.site-footer .site-footer-brand p {
  font-size: 0.92rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
  max-width: 360px;
  margin: 0 0 28px;
}
.site-footer .brand-call {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.site-footer .brand-call-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.42);
}
.site-footer-phone {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.005em;
  display: inline-block;
}
.site-footer-phone:hover { color: var(--gold-light); }

/* Column heads */
.site-footer .site-footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 22px;
}

/* Lists */
.site-footer-col ul { list-style: none; padding: 0; margin: 0; }
.site-footer-col li {
  padding: 7px 0;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.4;
}
.site-footer-col li a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}
.site-footer-col li a:hover { color: var(--gold-light); }

/* Visit column */
.site-footer .visit-line {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
  margin: 0 0 4px;
}
.site-footer .visit-line strong {
  font-weight: 500;
  color: #ffffff;
}
.site-footer .visit-call {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.site-footer .visit-call-label {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.42);
}
.site-footer .visit-call a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.site-footer .visit-call a:hover { color: var(--gold-light); }

/* Bottom — single restrained gold accent */
.site-footer-bottom {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.site-footer .bottom-rule {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.85;
}
.site-footer .bottom-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.site-footer .bottom-text a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 1px;
}
.site-footer .bottom-text a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* Responsive */
@media (max-width: 900px) {
  .site-footer { padding: 72px 0 48px; }
  .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 48px 40px; }
  .site-footer-brand { grid-column: 1 / -1; }
  .site-footer-col + .site-footer-col::before { display: none; }
  .site-footer .masthead { margin-bottom: 56px; gap: 20px; }
  .site-footer .masthead-rule { width: 56px; }
  .site-footer-bottom { margin-top: 56px; }
}
@media (max-width: 500px) {
  .site-footer { padding: 56px 0 40px; }
  .site-footer-container { padding: 0 24px; }
  .site-footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .site-footer-bottom { padding: 0 24px; }
  .site-footer .site-footer-brand h3 { font-size: 1.4rem; }
  .site-footer .masthead { gap: 14px; }
  .site-footer .masthead-rule { width: 32px; }
  .site-footer .masthead-text { font-size: 0.65rem; letter-spacing: 0.34em; }
}

/* Kill the old PPC footer on migrated pages */
.migrated .footer { display: none; }
