/* ============================================
   Hillcrest Kennel — Heritage Design System
   Warm, timeless, family-run landmark feel.
   Layered over style.css for the homepage; will
   roll to other pages after sign-off.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@400;500;600;700&display=swap');

.heritage {
  /* Heritage palette — warmer, more grounded than navy/gold baseline */
  --ink:            #0b1d2e;   /* deep ink navy — headings, dark sections */
  --ink-soft:       #1a2f42;
  --cream:          #f7f0e1;   /* parchment — warm bg */
  --cream-2:        #f0e7d3;   /* slightly darker parchment for panels */
  --paper:          #faf6ec;   /* warmer than white, for body bg */
  --gold:           #b8873d;   /* burnished gold — not flashy bright */
  --gold-dk:        #8d651e;
  --gold-bg:        rgba(184,135,61,0.08);
  --brick:          #8a2a2a;   /* oxblood accent, used sparingly */
  --text:           #2a241c;   /* warm dark brown-black */
  --text-soft:      #4a4138;
  --text-muted:     #7a6e5f;
  --hairline:       rgba(11,29,46,0.12);
  --hairline-soft:  rgba(11,29,46,0.06);

  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
}

/* Reset the standard site body styles on heritage pages */
.heritage h1, .heritage h2, .heritage h3, .heritage h4 {
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 500;   /* editorial weight, not display-bold */
  line-height: 1.15;
}
.heritage h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 500; letter-spacing: -0.02em; }
.heritage h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); font-weight: 500; }
.heritage h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 600; }
.heritage p  { color: var(--text-soft); font-size: 1.02rem; line-height: 1.75; }

/* Eyebrow: small, tracked-out, sets the "editorial" feel */
.heritage .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dk);
  margin-bottom: 14px;
}
.heritage .eyebrow--light { color: var(--gold); }

/* Ornamental divider — used between sections and below hero title */
.heritage .ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 22px;
  color: var(--gold);
}
.heritage .ornament::before, .heritage .ornament::after {
  content: "";
  flex: 0 0 56px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.heritage .ornament svg { width: 14px; height: 14px; }

/* ============================================
   Heritage Hero
   ============================================ */
.heritage .hero-heritage {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}
.heritage .hero-heritage::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(11,29,46,0.35) 0%, rgba(11,29,46,0.85) 100%),
    url('../images/boarding-kennel-facility.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(0.85);
  z-index: 0;
}
.heritage .hero-heritage .container {
  position: relative; z-index: 2;
  max-width: 960px; padding: 80px 24px;
}
.heritage .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(247,240,225,0.1);
  border: 1px solid rgba(247,240,225,0.22);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.heritage .hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 12px rgba(184,135,61,0.6);
}
.heritage .hero-heritage h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.heritage .hero-heritage h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.heritage .hero-heritage .lede {
  font-family: var(--sans);
  color: rgba(247,240,225,0.82);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto 36px;
}
.heritage .hero-ornament {
  color: var(--gold);
  margin: 24px auto;
}
.heritage .hero-cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.heritage .btn-h {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans); font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: none;
  border-radius: 2px;
  transition: all 0.2s;
  text-decoration: none;
  border: 1.5px solid transparent;
}
.heritage .btn-h--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.heritage .btn-h--primary:hover { background: var(--gold-dk); border-color: var(--gold-dk); color: #fff; transform: translateY(-1px); }
.heritage .btn-h--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247,240,225,0.35);
}
.heritage .btn-h--ghost:hover { border-color: var(--gold); color: var(--gold); }
.heritage .btn-h--dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.heritage .btn-h--dark:hover { background: var(--gold-dk); border-color: var(--gold-dk); transform: translateY(-1px); }

/* Sections — consistent heritage pattern */
.heritage .h-section { padding: 88px 0; position: relative; }
.heritage .h-section.bg-paper { background: var(--paper); }
.heritage .h-section.bg-cream { background: var(--cream); }
.heritage .h-section.bg-ink { background: var(--ink); color: var(--cream); }
.heritage .h-section.bg-ink h2, .heritage .h-section.bg-ink h3 { color: #fff; }
.heritage .h-section.bg-ink p { color: rgba(247,240,225,0.78); }
.heritage .h-section .container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* Section header block — eyebrow + h2 + optional lede */
.heritage .section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.heritage .section-head--left { text-align: left; margin: 0 0 56px; }
.heritage .section-head .lede {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 14px;
}
.heritage .bg-ink .section-head .lede { color: rgba(247,240,225,0.72); }

/* ============================================
   Heritage Story — "Three Generations"
   ============================================ */
.heritage .story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.heritage .story-copy p { margin-bottom: 18px; font-size: 1.08rem; }
.heritage .story-copy .signature {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-dk);
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}
.heritage .story-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.heritage .story-images img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.9);
  box-shadow: 0 20px 50px rgba(11,29,46,0.15);
}
.heritage .story-images img:nth-child(2) {
  margin-top: 52px;
  aspect-ratio: 3/4;
}

/* ============================================
   Services — 4 heritage-styled tiles
   ============================================ */
.heritage .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.heritage .service-tile {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 34px 28px 32px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.heritage .service-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.heritage .service-tile:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 20px 40px rgba(11,29,46,0.08); }
.heritage .service-tile:hover::before { transform: scaleX(1); }
.heritage .service-tile .tile-num {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-dk);
  letter-spacing: 0.15em;
  margin-bottom: 26px;
}
.heritage .service-tile h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.heritage .service-tile p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.heritage .service-tile .tile-price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold-dk);
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
  margin-top: auto;
}
.heritage .service-tile .tile-price strong { font-family: var(--sans); font-style: normal; font-weight: 700; color: var(--ink); font-size: 1.2rem; }

/* ============================================
   Numbers strip — heritage stat display
   ============================================ */
.heritage .numbers-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(247,240,225,0.15);
  border-bottom: 1px solid rgba(247,240,225,0.15);
}
.heritage .number-cell {
  padding: 44px 24px;
  text-align: center;
  border-right: 1px solid rgba(247,240,225,0.1);
}
.heritage .number-cell:last-child { border-right: none; }
.heritage .number-cell .num {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.heritage .number-cell .label {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(247,240,225,0.65);
  font-weight: 600;
}

/* ============================================
   Why trust us — heritage value pillars
   ============================================ */
.heritage .pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 52px;
  margin-top: 12px;
}
.heritage .pillar {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: start;
}
.heritage .pillar-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  padding-top: 3px;
  border-right: 1px solid var(--hairline);
  padding-right: 10px;
}
.heritage .pillar h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.heritage .pillar p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
}

/* ============================================
   Testimonials — editorial quote cards
   ============================================ */
.heritage .quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.heritage .quote-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 40px 32px 32px;
  border-radius: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.heritage .quote-card::before {
  content: "\201C";
  position: absolute;
  top: 8px; left: 20px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.28;
}
.heritage .quote-card blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.heritage .quote-attr { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--hairline); padding-top: 18px; }
.heritage .quote-attr .name { font-family: var(--sans); font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.heritage .quote-attr .source { font-family: var(--sans); font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================
   Areas we serve — local SEO section
   ============================================ */
.heritage .areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.heritage .areas-copy p { font-size: 1.02rem; line-height: 1.8; }
.heritage .areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 28px;
  padding: 28px 32px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  list-style: none;
  margin: 0;
}
.heritage .areas-list li {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.heritage .areas-list li::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   Hours & Location — heritage edition
   ============================================ */
.heritage .visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: stretch;
}
.heritage .visit-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 44px 40px;
  border-radius: 2px;
}
.heritage .visit-card h2 { margin-bottom: 10px; }
.heritage .visit-card .address-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 20px;
}
.heritage .visit-card .address-block .label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.heritage .visit-card .address-block .line {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.4;
}
.heritage .visit-card .address-block a {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--gold-dk);
  text-decoration: none;
  margin-top: 6px;
  display: inline-block;
  font-weight: 600;
}
.heritage .visit-card .address-block a:hover { color: var(--ink); }
.heritage .hours-table-h { width: 100%; border-collapse: collapse; }
.heritage .hours-table-h tr td { padding: 11px 0; font-family: var(--sans); font-size: 0.95rem; border-bottom: 1px dashed var(--hairline-soft); }
.heritage .hours-table-h tr td:first-child { color: var(--ink); font-weight: 600; }
.heritage .hours-table-h tr td:last-child { text-align: right; color: var(--text-soft); }
.heritage .hours-table-h tr:last-child td { border-bottom: none; }
.heritage .visit-map {
  border: 1px solid var(--hairline);
  border-radius: 2px;
  overflow: hidden;
  min-height: 420px;
}
.heritage .visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ============================================
   Final CTA
   ============================================ */
.heritage .final-cta-h {
  position: relative;
  background: var(--ink);
  padding: 100px 0;
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.heritage .final-cta-h::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(11,29,46,0.88), rgba(11,29,46,0.88)), url('../images/hero-boarding-dog.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.heritage .final-cta-h .container { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 28px; }
.heritage .final-cta-h h2 { color: #fff; margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3rem); }
.heritage .final-cta-h .lede { color: rgba(247,240,225,0.78); font-size: 1.1rem; margin-bottom: 36px; }
.heritage .final-cta-h .phone-display {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 24px;
  padding: 14px 32px;
  border: 1px solid rgba(184,135,61,0.3);
  border-radius: 2px;
  transition: all 0.2s;
}
.heritage .final-cta-h .phone-display:hover { background: var(--gold); color: var(--ink); }
.heritage .final-cta-h .meta { font-family: var(--sans); font-size: 0.86rem; color: rgba(247,240,225,0.6); letter-spacing: 0.05em; }

/* ============================================
   FAQ — heritage styled
   ============================================ */
.heritage .faq-list-h { max-width: 820px; margin: 0 auto; }
.heritage .faq-list-h details {
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}
.heritage .faq-list-h details[open] { padding-bottom: 28px; }
.heritage .faq-list-h summary {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.heritage .faq-list-h summary::-webkit-details-marker { display: none; }
.heritage .faq-list-h summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: -2px;
  font-family: var(--sans);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-dk);
  transition: transform 0.2s;
}
.heritage .faq-list-h details[open] summary::after { content: "\2212"; }
.heritage .faq-list-h details p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px) {
  .heritage .h-section { padding: 64px 0; }
  .heritage .section-head { margin-bottom: 40px; }
  .heritage .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .heritage .story-images img:nth-child(2) { margin-top: 0; }
  .heritage .services-grid { grid-template-columns: repeat(2, 1fr); }
  .heritage .numbers-strip { grid-template-columns: repeat(2, 1fr); }
  .heritage .number-cell { border-right: none; border-bottom: 1px solid rgba(247,240,225,0.1); }
  .heritage .pillars-grid { grid-template-columns: 1fr; gap: 24px; }
  .heritage .quotes-grid { grid-template-columns: 1fr; }
  .heritage .areas-grid { grid-template-columns: 1fr; gap: 32px; }
  .heritage .areas-list { grid-template-columns: repeat(2, 1fr); }
  .heritage .visit-grid { grid-template-columns: 1fr; gap: 32px; }
  .heritage .visit-map { min-height: 300px; }
  .heritage .visit-map iframe { min-height: 300px; }
}
@media (max-width: 560px) {
  .heritage .hero-heritage { min-height: 82vh; }
  .heritage .hero-heritage .container { padding: 60px 20px; }
  .heritage .services-grid { grid-template-columns: 1fr; }
  .heritage .areas-list { grid-template-columns: 1fr; }
}

/* Sticky mobile call bar — heritage-tone gradient (burnished gold, no flashy orange) */
@media (max-width: 767px) {
  .heritage .mobile-call-bar a {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  }
}
