/* Openhearth Unleashed — shared stylesheet */

:root {
  --ink: #242220;
  --grey: #5a5c4f;
  --sage-700: #858978;
  --sage-600: #6f7364;
  --sage-500: #a0a390;
  --sage-100: #eae9e0;
  --cream: #f7f4e8;
  --line: #c9c7b8;
  --header-text: #14130f;
  --link: #2f6e30;
  --link-hover: #1c451d;
  --accent-1: #d97b3f;
  --accent-2: #3d7a8c;
  --font: 'Public Sans', Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: #fff !important; }
img { max-width: 100%; }
a { color: var(--link); }
a:hover { color: var(--link-hover); }
a:active { color: var(--link-hover); }
a:focus-visible { outline: 3px solid var(--link); outline-offset: 2px; }
h1, h2, h3 { font-weight: 700; text-wrap: pretty; }
p { text-wrap: pretty; }

.page { min-height: 100vh; display: flex; flex-direction: column; }
.page > main { flex: 1; }
.wrap { max-width: 1100px; margin: 0 auto; padding-left: 15px; padding-right: 15px; }
.bg-blobs { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 30; background: var(--sage-700); border-bottom: 4px solid var(--ink); }
.header-inner { max-width: 1100px; margin: 0 auto; padding: 10px 15px; display: flex; align-items: center; gap: 28px; }
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 60px; width: 60px; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; flex: 1 1 0%; min-width: 0; flex-wrap: wrap; }
.nav-link { color: var(--header-text); text-decoration: none; font-size: 1rem; font-weight: 700; padding: 8px 0; }
.nav-link:hover { text-decoration: underline; }
.nav-link.is-current { border-bottom: 3px solid var(--header-text); }
.btn-contact { color: var(--ink); text-decoration: none; font-size: 0.9375rem; font-weight: 700; background: var(--cream); padding: 9px 22px; border: 2px solid var(--ink); border-radius: 999px; display: inline-block; flex-shrink: 0; }
.btn-contact:hover { background: #fff; }
.hamburger { display: none; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; width: 44px; height: 44px; padding: 0; flex-shrink: 0; }

/* Bigger header on the homepage (desktop/tablet); mobile scales down a step */
.site-header--home .header-inner { padding: 26px 15px; }
.site-header--home .logo-img { height: 112px; width: 112px; }
@media (max-width: 820px) {
  .site-header--home .header-inner { padding: 16px 15px; }
  .site-header--home .logo-img { height: 84px; width: 84px; }
}

/* Homepage-only integrated nav + hero block */
.home-hero-wrap { background: #33392c; border-radius: 0 0 32px 32px; margin: 0 12px; padding: 18px 15px 0; position: relative; overflow: hidden; }
.home-hero-wrap--nav-only { padding-bottom: 18px; }
.home-hero-wrap--page { padding-bottom: 28px; }
.home-hero-wrap--page .blob { position: absolute; top: -30%; right: -8%; width: 240px; height: 240px; z-index: 0; }
.page-breadcrumb { max-width: 1100px; margin: 22px auto 0; padding: 0 15px; display: flex; align-items: center; gap: 8px; font-size: 0.875rem; flex-wrap: wrap; position: relative; z-index: 1; }
.page-breadcrumb a { color: var(--cream); opacity: 0.75; text-decoration: none; }
.page-breadcrumb a:hover { opacity: 1; }
.page-breadcrumb .sep { color: var(--cream); opacity: 0.4; }
.page-breadcrumb .here { color: var(--cream); font-weight: 700; }
.page-title-block { max-width: 1100px; margin: 14px auto 0; padding: 0 15px; position: relative; z-index: 1; }
.page-title-block h1 { font-size: 2.25rem; margin: 0; color: var(--cream); }
.page-title-block p { font-size: 1.125rem; margin: 12px 0 0; max-width: 640px; color: var(--cream); opacity: 0.9; }
.photo-frame { display: block; border-radius: 22px; border: 4px solid var(--accent-1); box-shadow: 0 14px 30px rgba(36,34,32,0.16); margin-bottom: 8px; }
.photo-frame--accent-2 { border-color: var(--accent-2); }
.photo-frame--sage { border-color: var(--sage-700); }
.home-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 700px) { .home-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.arch-panel { background: var(--sage-100); border-radius: 50% 50% 0 0 / 90px 90px 0 0; padding: 76px 40px 48px; text-align: center; margin: 0 0 48px; }
.arch-panel .wrap { padding: 0 15px; }
.arch-panel .home-gallery-grid { text-align: left; }
@media (max-width: 700px) { .arch-panel { border-radius: 50% 50% 50% 50% / 50px 50px 50px 50px; padding: 48px 20px; } }
.review-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { border: 2px solid var(--line); border-radius: 14px; background: var(--sage-100); padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.review-card-top { display: flex; align-items: center; justify-content: space-between; }
.review-stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; }
.review-google { font-size: 0.8125rem; font-weight: 700; color: var(--ink); opacity: 0.55; }
.review-card p { font-size: 1rem; line-height: 1.55; margin: 0; flex: 1; }
.review-who { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 34px; height: 34px; border-radius: 50%; color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-who cite { font-style: normal; font-weight: 700; display: block; font-size: 0.9375rem; }
.review-who small { font-size: 0.8125rem; color: var(--ink); opacity: 0.6; }
@media (max-width: 700px) { .review-row { grid-template-columns: 1fr; } }
.paw-print { position: absolute; opacity: 0.16; pointer-events: none; z-index: 0; }
.help-popup { position: fixed; bottom: 20px; right: 20px; max-width: 300px; background: #fff; border: 2px solid var(--ink); border-radius: 14px; padding: 20px 22px; box-shadow: 0 14px 30px rgba(36,34,32,0.22); transform: translateY(20px); opacity: 0; pointer-events: none; transition: transform 0.25s ease, opacity 0.25s ease; z-index: 60; }
.help-popup.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.help-popup button[data-help-close] { position: absolute; top: 10px; right: 12px; background: none; border: none; font-size: 1.25rem; line-height: 1; cursor: pointer; color: var(--grey); }
.help-popup h3 { font-size: 1.0625rem; margin: 0 0 8px; padding-right: 16px; }
.help-popup p { font-size: 0.9375rem; margin: 0 0 14px; }
@media (max-width: 500px) { .help-popup { left: 15px; right: 15px; max-width: none; } }
.success-modal-backdrop { position: fixed; inset: 0; background: rgba(36,34,32,0.55); z-index: 300; display: none; align-items: center; justify-content: center; padding: 20px; }
.success-modal-backdrop.is-open { display: flex; }
.success-modal { background: #fff; border-radius: 18px; border: 2px solid var(--ink); padding: 36px 32px; max-width: 380px; text-align: center; box-shadow: 0 24px 50px rgba(0,0,0,0.3); }
.success-modal h2 { font-size: 1.375rem; margin: 16px 0 8px; }
.success-modal p { font-size: 1rem; line-height: 1.55; margin: 0 0 22px; color: var(--grey); }
.home-hero-top { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; z-index: 1; }
.home-hero-logo img { display: block; height: 88px; width: 88px; border-radius: 50%; border: 4px solid var(--cream); box-shadow: 0 6px 16px rgba(0,0,0,0.25); }
.home-hero-nav { flex: 1; display: flex; justify-content: flex-end; }
.home-hero-nav > nav, .home-hero-nav > .btn-contact { display: flex; align-items: center; }
.home-hero-nav { background: var(--cream); border-radius: 999px; padding: 10px 10px 10px 22px; gap: 24px; align-items: center; }
.home-hero-nav .nav-link { color: var(--ink); }
.home-hero-nav .nav-link.is-current { border-bottom: 3px solid var(--accent-1); }
.home-hero-nav .btn-contact { background: var(--accent-1); color: #fff; border-color: var(--accent-1); }
.home-hero-nav .btn-contact:hover { background: var(--ink); border-color: var(--ink); }
.home-hero-nav .hamburger svg path { stroke: #1a1917; }
.home-hero-inner { position: relative; z-index: 1; padding: 44px 15px 0; }
.home-hero-inner .hero-copy h1 { color: #fff; }
.home-hero-inner .hero-copy p { color: var(--cream); }
.home-hero-inner .btn-secondary--dark { background: transparent; color: var(--cream); border-color: var(--cream); }
.home-hero-inner .btn-secondary--dark:hover { background: rgba(255,255,255,0.12); }
.home-hero-media { position: relative; }
.home-hero-circle { position: absolute; top: 8%; right: -6%; width: 78%; height: 78%; border-radius: 50%; background: var(--accent-1); z-index: 0; }
.home-hero-media image-slot { position: relative; z-index: 1; display: block; aspect-ratio: 4 / 3; border: none; border-radius: 20px; }
.home-hero-badge { position: absolute; bottom: -6%; left: -4%; z-index: 2; width: 52px; height: 52px; border-radius: 50%; background: var(--accent-2); color: #fff; display: flex; align-items: center; justify-content: center; border: 3px solid var(--cream); box-shadow: 0 6px 16px rgba(0,0,0,0.25); }
@media (max-width: 820px) {
  .home-hero-logo img { height: 60px; width: 60px; }
  .home-hero-nav .nav-links, .home-hero-nav .btn-contact { display: none; }
  .home-hero-nav .hamburger { display: flex; margin-left: auto; }
  .home-hero-nav { padding: 10px; }
}
@media (max-width: 700px) { .home-hero-inner { grid-template-columns: 1fr; } }

/* Mobile panel */
.mobile-panel { display: none; position: fixed; inset: 0; z-index: 50; background: var(--sage-700); overflow-y: auto; }
.mobile-panel.is-open { display: block; }
.mobile-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 15px; border-bottom: 4px solid var(--ink); }
.mobile-head img { height: 52px; width: 52px; display: block; }
.mobile-close { background: none; border: none; cursor: pointer; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; padding: 0; }
.mobile-nav { padding: 12px 24px 48px; display: flex; flex-direction: column; }
.mobile-nav > a { display: block; color: #fff; text-decoration: none; font-size: 1.5rem; font-weight: 700; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.3); }
.mobile-nav > a:first-child { border-top: none; }
.mobile-cta { display: block; text-align: center; background: var(--cream); color: var(--ink); text-decoration: none; font-size: 1.0625rem; font-weight: 700; padding: 14px; margin-top: 20px; border: 2px solid var(--ink); border-radius: 999px; }

/* Hero */
.hero { background: var(--sage-100); border-bottom: 4px solid var(--ink); }
.hero-inner { max-width: 1100px; margin: 0 auto; padding: 56px 15px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.25rem, 5vw, 3.375rem); line-height: 1.05; margin: 0 0 8px; }
.hero-copy .kicker { font-size: 1.0625rem; font-weight: 700; color: var(--sage-700); margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.03em; }
.hero-copy p { font-size: 1.1875rem; line-height: 1.5; margin: 0 0 28px; max-width: 480px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media .blob { position: absolute; z-index: 0; top: -14%; right: -16%; width: 62%; height: 62%; color: var(--accent-1); opacity: 0.35; }
.hero-media image-slot { position: relative; z-index: 1; display: block; aspect-ratio: 4 / 3; border: 2px solid var(--ink); }

.btn-primary { display: inline-block; background: var(--sage-700); color: #fff; text-decoration: none; font-size: 1.0625rem; font-weight: 700; padding: 12px 26px; border: 2px solid var(--ink); border-radius: 999px; box-shadow: 0 3px 0 var(--ink); }
.btn-primary:hover { background: var(--ink); color: #fff; }
.btn-secondary { display: inline-block; background: #fff; color: var(--ink); text-decoration: none; font-size: 1.0625rem; font-weight: 700; padding: 12px 26px; border: 2px solid var(--ink); border-radius: 999px; }
.btn-secondary:hover { background: var(--sage-100); }

/* Services / cards */
.services { padding: 56px 15px; }
.services--cta { background: var(--sage-100); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services h2 { font-size: 1.75rem; margin: 0 0 28px; display: flex; align-items: center; gap: 12px; position: relative; }
.services h2 .paw { color: var(--accent-1); flex-shrink: 0; }
.service-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; position: relative; }
.service-card { border: none; border-radius: 22px; background: #fff; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 14px 30px rgba(36,34,32,0.14); transition: transform 0.18s ease, box-shadow 0.18s ease; border-top: 8px solid var(--card-accent, var(--accent-1)); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(36,34,32,0.2); }
.service-card:nth-child(1) { --card-accent: var(--accent-1); }
.service-card:nth-child(2) { --card-accent: var(--accent-2); }
.service-card image-slot { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; }
.service-card .service-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.375rem; margin: 0 0 10px; }
.service-card p { font-size: 1rem; line-height: 1.6; margin: 0 0 20px; flex: 1; }
.service-card .service-body a { position: relative; z-index: 3; }
@media (max-width: 700px) { .service-grid { grid-template-columns: 1fr; } .hero-inner { grid-template-columns: 1fr; } }

/* Accordion (GDS-style, boxed for emphasis) */
.accordion { max-width: 1100px; margin: 0 auto; border: 2px solid var(--ink); border-radius: 12px; overflow: hidden; box-shadow: 0 10px 24px rgba(36,34,32,0.08); }
.accordion details { border-bottom: 2px solid var(--ink); background: #fff; }
.accordion details:last-child { border-bottom: none; }
.accordion details[open] { background: var(--sage-100); }
.accordion summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1.1875rem; font-weight: 700; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .chev { flex-shrink: 0; transition: transform 0.15s; color: #fff; background: var(--sage-700); border-radius: 50%; padding: 4px; }
.accordion details[open] summary .chev { transform: rotate(180deg); background: var(--accent-1); }
.accordion .accordion-body { padding: 0 24px 24px; font-size: 1.0625rem; line-height: 1.6; max-width: 760px; }
.accordion .accordion-body a { font-weight: 700; }

/* About teaser / prose sections */
.section-wash { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid { max-width: 1100px; margin: 0 auto; padding: 56px 15px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.about-grid image-slot { display: block; aspect-ratio: 4 / 3; border: 2px solid var(--ink); }
.about-grid h2 { font-size: 1.75rem; margin: 0 0 16px; }
.about-grid p { font-size: 1.0625rem; line-height: 1.65; margin: 0 0 20px; }
.about-grid cite { display: block; font-style: normal; font-weight: 700; margin-top: 16px; }
@media (max-width: 700px) { .about-grid { grid-template-columns: 1fr; } }

/* Subpages */
.breadcrumb { background: transparent; border-bottom: none; }
.breadcrumb > div { max-width: 1100px; margin: 0 auto; padding: 10px 15px; display: flex; align-items: center; gap: 8px; font-size: 0.875rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--grey); text-decoration: none; }
.breadcrumb a:hover { color: var(--link); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb .here { color: var(--ink); font-weight: 700; }
.page-hero { background: var(--sage-100); border-bottom: 4px solid var(--ink); position: relative; overflow: hidden; }
.page-hero .blob { position: absolute; top: -32%; right: -6%; width: 220px; height: 220px; z-index: 0; }
.page-hero > div { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 40px 15px; }
.page-hero h1 { font-size: 2.25rem; margin: 0; }
.page-hero p { font-size: 1.125rem; margin: 12px 0 0; max-width: 640px; }
.prose-cols { max-width: 1100px; margin: 0 auto; padding: 40px 15px; display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
@media (max-width: 800px) { .prose-cols { grid-template-columns: 1fr; } }
.prose-cols .prose { padding: 0; max-width: none; }
.prose-cols .gov-sidebar { margin-top: 0; }
.prose { max-width: 760px; margin: 0 auto; padding: 40px 15px; }
.prose p { font-size: 1.0625rem; line-height: 1.65; color: var(--ink); margin: 0 0 18px; }
.prose h2 { font-size: 1.375rem; margin: 32px 0 12px; }
.prose ul { font-size: 1.0625rem; line-height: 1.65; padding-left: 22px; margin: 0 0 18px; }
.prose image-slot { display: block; aspect-ratio: 16 / 9; border: 2px solid var(--ink); margin: 8px 0 32px; }
.prose image-slot.photo-frame { border: 4px solid var(--accent-1); border-radius: 22px; box-shadow: 0 14px 30px rgba(36,34,32,0.16); margin-bottom: 8px; }
.prose image-slot.photo-frame.photo-frame--accent-2 { border-color: var(--accent-2); }
.prose image-slot.photo-frame.photo-frame--sage { border-color: var(--sage-700); }
.prose .cta-row { margin-top: 8px; }
.price-box { border: 2px solid var(--ink); margin: 0 0 32px; overflow: hidden; background: #fff; }
.feature-box { border: 2px solid var(--ink); border-left: 8px solid var(--fb-accent, var(--accent-1)); padding: 24px 28px; margin: 0 0 32px; background: #fff; }
.feature-box h2 { margin-top: 0 !important; }
.feature-box p:last-child { margin-bottom: 0; }
.price-box-head { background: var(--sage-700); padding: 32px 28px 26px; text-align: center; }
.price-box .price { font-size: 2.75rem; font-weight: 800; margin: 0; color: var(--cream); }
.price-box .price-label { font-size: 1.125rem; color: var(--cream); margin: 8px 0 0; }
.price-box ul { list-style: none; margin: 0; padding: 0; font-size: 1.0625rem; line-height: 1.6; }
.price-box ul li { padding: 20px 28px; border-bottom: 1px solid var(--line); text-align: center; }
.price-box ul li:last-child { border-bottom: none; background: var(--sage-100); color: var(--grey); font-size: 0.9375rem; }
.hours-table { width: 100%; font-size: 1.0625rem; line-height: 1.6; border-collapse: collapse; margin: 0 0 18px; }
.hours-table td { padding: 6px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; }

/* Reusable CTA band — heading/copy left, button right */
.cta-band { max-width: 1100px; margin: 40px auto 40px; background: var(--sage-100); border: 2px solid var(--ink); border-radius: 20px; padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 0; position: relative; overflow: hidden; }
.cta-band .blob { position: absolute; bottom: -35%; left: -6%; width: 170px; height: 170px; z-index: 0; }
.cta-band .cta-text, .cta-band > .hero-cta { position: relative; z-index: 1; }
.cta-band .cta-text h2 { font-size: 1.375rem; margin: 0 0 6px; }
.cta-band .cta-text p { font-size: 1.0625rem; margin: 0; color: var(--grey); }
.cta-band .btn-primary { flex-shrink: 0; }
@media (max-width: 600px) { .cta-band { flex-direction: column; align-items: stretch; text-align: center; } }

/* Contact */
.contact-cols { max-width: 1100px; margin: 0 auto; padding: 40px 15px 60px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
@media (max-width: 700px) { .contact-cols { grid-template-columns: 1fr !important; } }
.contact-card { border: 2px solid var(--ink); padding: 28px; }
.contact-card h2 { font-size: 1.25rem; margin: 0 0 16px; }
.contact-card p { font-size: 1.0625rem; line-height: 1.7; margin: 0 0 8px; }
.contact-card .placeholder { color: var(--grey); font-style: italic; }
.contact-note { background: var(--sage-100); border: 2px solid var(--ink); padding: 20px 24px; font-size: 1rem; margin-bottom: 32px; }
.gov-sidebar { border-top: 10px solid var(--link); padding-top: 20px; margin-top: 32px; }
.gov-sidebar h2 { font-size: 1.125rem; margin: 0 0 16px; }
.gov-sidebar .hours-table { margin: 0 0 12px; font-size: 0.875rem; width: 100%; table-layout: fixed; }
.gov-sidebar .hours-table td { white-space: normal; }
.gov-sidebar .hours-table td:first-child { padding-right: 8px; width: 54%; }
.gov-sidebar .hours-table td:last-child { white-space: nowrap; text-align: right; width: 46%; }
.gov-sidebar p.note { font-size: 0.9375rem; color: var(--grey); margin: 0; }
.toc-list { list-style: none; margin: 0 0 8px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.toc-list a { font-size: 0.9375rem; font-weight: 700; text-decoration: none; }
.toc-list a:hover { text-decoration: underline; }
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.9375rem; font-weight: 700; }
.form-row input, .form-row select, .form-row textarea { font: inherit; font-size: 1rem; padding: 10px 12px; border: 2px solid var(--ink); border-radius: 4px; background: #fff; color: var(--ink); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: 3px solid var(--link); outline-offset: 0; }
.form-row textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.reg-section { position: relative; border: 2px solid var(--ink); border-left: 8px solid var(--reg-accent, var(--accent-1)); border-radius: 10px; padding: 24px 24px 20px; margin: 0 0 24px; background: #fff; box-shadow: 0 8px 20px rgba(36,34,32,0.08); }
.reg-section .reg-num { position: absolute; top: -14px; left: -14px; width: 30px; height: 30px; border-radius: 50%; background: var(--reg-accent, var(--accent-1)); color: #fff; font-weight: 700; font-size: 0.9375rem; display: flex; align-items: center; justify-content: center; border: 2px solid var(--ink); }
.reg-section h2 { margin-top: 0 !important; }
.social-links { display: flex; gap: 14px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 2px solid var(--ink); border-radius: 50%; color: var(--ink); text-decoration: none; }
.social-links a:hover { background: var(--sage-100); }
.footer-social a { border: none; background: var(--cream); color: var(--sage-700); }
.footer-social a:hover { background: var(--accent-1); color: #fff; }

/* Footer */
.site-footer { background: var(--sage-700); margin-top: auto; position: relative; overflow: hidden; }
.footer-wave-band { height: 40px; background: #fff; }
.footer-wave { display: block; width: 100%; height: 40px; margin-top: -40px; position: relative; z-index: 1; }
.footer-logo-big { width: 200px; height: 200px; display: block; border-radius: 50%; border: 4px solid var(--cream); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
@media (max-width: 900px) { .footer-logo-big { width: 140px; height: 140px; margin: 0 auto; } }
.footer-top { max-width: 1100px; margin: 0 auto; padding: 40px 15px 0; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 32px; }
.footer-brand p { color: var(--cream); font-size: 0.9375rem; }
.footer-tagline { color: var(--cream) !important; font-size: 1.1875rem !important; font-weight: 700; line-height: 1.35; margin: 0 !important; display: flex; align-items: center; gap: 8px; }
.footer-tagline .paw-accent { width: 22px; height: 22px; transform: rotate(18deg); opacity: 0.9; flex-shrink: 0; }
.footer-hours p { display: flex; justify-content: space-between; gap: 12px; font-size: 0.9375rem; color: var(--cream); margin: 0 0 10px; }
.footer-hours p span:first-child { color: #fff; }
.site-footer h2 { font-size: 1.125rem; font-weight: 700; margin: 0 0 12px; color: #fff; }
.footer-rule { border-top: 1px solid rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 1rem; text-decoration: none; color: #fff; }
.footer-links a:hover { text-decoration: underline; }
.footer-hours-card { background: var(--cream); border-radius: 16px; padding: 16px 18px; }
.footer-hours-card p { display: flex; justify-content: space-between; gap: 12px; font-size: 0.9375rem; color: var(--ink); margin: 0 0 8px; }
.footer-hours-card p:last-child { margin-bottom: 0; }
.footer-hours-card p span:first-child { font-weight: 700; }
.footer-links--chips { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-links--chips a { background: rgba(255,255,255,0.14); border-radius: 999px; padding: 7px 14px; font-size: 0.875rem; font-weight: 700; }
.footer-links--chips a:hover { background: var(--cream); color: var(--ink); text-decoration: none; }
.footer-top { position: relative; z-index: 1; }
.site-footer p { font-size: 0.9375rem; color: var(--cream); margin: 0 0 6px; }
.footer-contact-row { display: flex; align-items: center; gap: 10px; }
.footer-contact-row a { color: #fff; text-decoration: none; }
.footer-contact-row a:hover { text-decoration: underline; }
.footer-icon { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.14); color: #fff; flex-shrink: 0; }
.footer-bottom { max-width: 1100px; margin: 32px auto 0; padding: 20px 15px; border-top: 1px solid rgba(255,255,255,0.3); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; position: relative; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-legal a, .footer-bottom p { font-size: 0.875rem; color: var(--cream); text-decoration: none; margin: 0; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .footer-brand { grid-column: 1 / -1; } }

/* Cookie banner */
.cookie { display: none; position: fixed; left: 20px; bottom: 20px; z-index: 9999; background: #fff; color: var(--ink); width: 340px; max-width: calc(100vw - 40px); border: 2px solid var(--ink); border-radius: 14px; padding: 20px 22px; box-shadow: 0 14px 30px rgba(36,34,32,0.22); }
.cookie.is-open { display: block; }
.cookie-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.cookie-head h2 { margin: 0; font-size: 1.125rem; font-weight: 700; }
.cookie-head button { background: none; border: none; padding: 0; cursor: pointer; font-size: 1.375rem; line-height: 1; font-family: inherit; }
.cookie p { margin: 0 0 20px; font-size: 0.875rem; line-height: 1.5; color: var(--grey); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button { flex: 1; border: 2px solid var(--ink); border-radius: 8px; padding: 10px; font-size: 0.875rem; font-weight: 700; cursor: pointer; font-family: inherit; }
.cookie-accept { background: var(--sage-700); color: var(--ink); }
.cookie-decline { background: #fff; color: var(--ink); }

@media (max-width: 820px) {
  .nav-links, .btn-contact { display: none; }
  .hamburger { display: flex; margin-left: auto; }
}
