/*
Theme Name: Heights Hospital for Animals
Author: Ivan Lopez
Description: Custom theme for Heights Hospital for Animals, made with love.
Version: 1.1
Requires at least: 6.9
Tested up to: 6.9
Text Domain: hhfa
License: All Rights Reserved
License URI: https://choosealicense.com/no-permission/
Copyright: © 2026 Aparna K. Modi. All rights reserved.
*/

/* =========================================================
   1) Design tokens
   ========================================================= */

:root{
  --brand: #F56956;
  /**--brand: #F56756;**/
  --brand-text: #b5392a; /* Darkened brand for text on light backgrounds — passes WCAG AA 4.5:1 */
  --accent: rgb(86, 228, 245);

  --btn-brand: #000;
  --btn-brand-bg: #F56956;
  --btn-brand-hover: #F56956;
  --btn-brand-bg-hover: #fff;
  --btn-brand-border-hover: #2e547e;

  --btn-accent: #000;
  --btn-accent-bg: rgb(86, 228, 245);
  --btn-accent-hover: #F56956;
  --btn-accent-bg-hover: #fff;
  --btn-accent-border-hover: #2e547e;

  --ink: #111;
  --muted: #6b7280;
  --line: rgba(0,0,0,.10);
  --bg: #fff;

  --shadow: 0 8px 24px rgba(0,0,0,.12);

  /* Header behavior
     theme.js can update --header-alpha on scroll (0 at top, 1 when scrolled) */
  --header-alpha: 0;
  --header-h: 160px;
  --header-padding: 110px;
}

@media (max-width: 899px){
  :root{ --header-h: 110px; }
}

/* =========================================================
   2) Base, layout
   ========================================================= */

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:"SN Pro",system-ui,-apple-system,sans-serif;
  color:var(--ink);
  background:var(--bg);
}

a{ color:inherit; }

html, body { overflow-anchor: none; }

/* Prevent initial load jump: don't animate header sizing until JS says "ready" */
html:not(.is-ready) .header-row,
html:not(.is-ready) .brand img{
  transition: none !important;
}

.container{
  width:min(1100px, calc(100% - 40px));
  margin:0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Google Sans Flex", system-ui, sans-serif;
}

h1, h2, h3 {
  color: var(--brand-text);
  text-transform: uppercase;
}

/* Gutenberg Groups convenience classes */
.section{ padding:25px 0; }
.section--tight{ padding:34px 0; }
.section--wide{ padding:72px 0; }
.section--muted{ background:#f6f7f9; }

/* Ensure nested .container inside section behaves the same */
.section .container{
  width:min(1100px, calc(100% - 40px));
  margin:0 auto;
}

/* =========================================================
   3) Header (fixed, transparent at top, solid on scroll)
   ========================================================= */

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: rgba(242, 242, 242, var(--header-alpha));
  box-shadow: 0 8px 24px rgba(0,0,0, calc(.10 * var(--header-alpha)));
  border-bottom: 1px solid rgba(0,0,0, calc(.06 * var(--header-alpha)));

  /* no blur or color shift */
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* Defensive: top bar inside header should not paint anything */
.site-header .topbar,
.site-header .top-bar,
.site-header .header-top{
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand img{
  display:block;
  height:44px;
  width:auto;
}

.entry-content p.brand-color{
  color: var(--brand-text);
}

.entry-content a{
  color: var(--brand-text);
  text-decoration: none;
}

.entry-content a:hover{
  color: #000;
  text-decoration: underline;
}

@media (min-width: 900px){
  /* Desktop header grows at top, shrinks as you scroll (uses --header-alpha 0..1) */
  :root{
    --logo-h-max: 115px;
    --logo-h-min: 85px;

    --header-pad-max: 18px;
    --header-pad-min: 14px;

    --logo-h: calc(
      var(--logo-h-max) - (var(--logo-h-max) - var(--logo-h-min)) * var(--header-alpha)
    );
    --header-pad-y: calc(
      var(--header-pad-max) - (var(--header-pad-max) - var(--header-pad-min)) * var(--header-alpha)
    );
  }

  .header-row{
    padding: var(--header-pad-y) 0;
    transition: padding .18s ease;
  }

  .brand img{
    height: var(--logo-h);
    transition: height .18s ease;
  }
}

@media (max-width: 899px){
  /* Reduce the header’s left/right “padding” (it’s actually container gutters) */
  .site-header > .container{
    width: calc(100% - 20px) !important; /* was 40px total */
  }

  /* Mobile header grows at top, shrinks as you scroll (uses --header-alpha 0..1) */
  :root{
    --logo-h-max: 61px;  /* 34px * 1.8 */
    --logo-h-min: 34px;

    --header-pad-max: 12px;
    --header-pad-min: 7px;

    --logo-h: calc(
      var(--logo-h-max) - (var(--logo-h-max) - var(--logo-h-min)) * var(--header-alpha)
    );
    --header-pad-y: calc(
      var(--header-pad-max) - (var(--header-pad-max) - var(--header-pad-min)) * var(--header-alpha)
    );
  }

  .site-header .header-row{
    padding: var(--header-pad-y) 0;
    transition: padding .18s ease;
  }

  .site-header .brand img{
    height: var(--logo-h);
    width: auto;
    transition: height .18s ease;
  }

  .site-header .icon-btn{
    width: 38px;
    height: 38px;
  }
}

.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.icon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  text-decoration:none;
}

.icon-btn.transparent{
  background: transparent !important;
  border: 0 !important;
}

.icon-btn svg{ width:22px; height:22px; }

.menu-toggle{ cursor:pointer; }

/* Desktop CTA buttons (if used in header) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding:0 14px;
  border-radius:0;
  text-decoration:none;
  font-size:14px;
  border:1px solid rgba(255,255,255,.35);
  font-weight:700 !important;
  letter-spacing:.04em;
  text-transform: uppercase;
  transition: color .2s, background .2s, border-color .2s, box-shadow .2s, transform .2s;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.btn--brand{
  color: var(--btn-brand);
  background: var(--btn-brand-bg);
  border: 1px solid rgba(0,0,0,.18);
}

.btn--brand:hover{
  color: var(--btn-brand-hover);
  background: var(--btn-brand-bg-hover);
  border:1px solid var(--btn-brand-border-hover);
}

.btn--accent{
  color: var(--btn-accent);
  background: var(--btn-accent-bg);
  border: 1px solid rgba(0,0,0,.18);
}

.btn--accent:hover{
  color: var(--btn-accent-hover);
  background: var(--btn-accent-bg-hover);
  border:1px solid var(--btn-accent-border-hover);
}

.desktop-nav{
  display:none;
  align-items:center;
}

.nav-left{
  display:flex;
  gap:16px;
}

.nav-right{
  margin-left:auto;
  display:flex;
  gap:16px;
}

@media (min-width: 900px){
  .desktop-nav{ display:block; }
  .header-actions .icon-btn:not(.menu-toggle){ display:none; }
  .header-actions .menu-toggle{ display:inline-flex; }

    /* Let the nav take the remaining header width */
  .desktop-nav{
    display:flex;
    flex: 1;
    justify-content:flex-end;
  }

  /* Stack the CTA rows and align them to the right edge */
  .desktop-nav{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:10px;
    justify-content:flex-end;
  }

  /* Online pharmacy row: right edge */
  .desktop-nav.nav-right{
    justify-content:flex-end;
  }

  .desktop-nav{ width:100%; }
  .desktop-nav.nav-right{
    display:flex;
    justify-content:flex-end;
    width:100%;
  }

  .desktop-nav .btn {
    min-width: 200px;
  }
}

/* Mobile panel */
.mobile-panel{
  display:none;
  border-top:1px solid var(--line);
  background:#fff;
}

.mobile-panel.is-open{ display:block; }

.mobile-panel a{
  display:block;
  padding:14px 20px;
  border-bottom:1px solid var(--line);
  text-decoration:none;
}

/* Desktop: hide hamburger and mobile panel */
@media (min-width: 900px){
  .menu-toggle{ display:none; }
  .mobile-panel{ display:none !important; }
}

/* =========================================================
   4) Main spacing (account for fixed header)
   ========================================================= */

body.home{ padding-top: 0; }
body:not(.home){ padding-top: var(--header-padding); }

main.site-main{ padding:28px 0 80px; }
body.home main.site-main{ padding-top: 0; }

/* Home hero should not sit under the header */
body.home .wp-block-cover.alignfull:first-of-type .wp-block-cover__inner-container{
  padding-top: calc(var(--header-h) + 24px);
}

body.home .entry-content > .wp-block-cover:first-child{ margin-top: 0; }

/* =========================================================
   5) Gutenberg defaults and typography
   ========================================================= */

.wp-site-blocks,
.entry-content{ margin:0; }

.entry-content > *{ margin-top:0; }

.alignfull{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

.alignwide{
  width:min(1280px, calc(100% - 40px));
  margin-left:auto;
  margin-right:auto;
}

/* When you add a Group with class "container" inside a Cover */
.wp-block-cover .container{
  width:min(1100px, calc(100% - 40px));
}

h1.main-title{
  font-size:clamp(32px, 5vw, 54px);
  line-height:1.05;
  margin:0 0 24px;
}

h1.main-title:not(.wp-block-heading){
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 20px;
  font-weight: 300;
}

h2.wp-block-heading{
  text-align: center;
  font-weight: 700;
}

h3.wp-block-heading{
  font-weight: 700;
}

.center{
  text-align: center;
}

.entry-content h2{
  font-size:clamp(24px, 3.2vw, 36px);
  line-height:1.1;
  margin:0 0 14px;
}

.entry-content p{
  color:#1f2937;
  font-size:18px;
  line-height:1.6;
}

.entry-content a{ text-decoration:none; }
.entry-content a.btn{ color:inherit; }

/* =========================================================
   6) Buttons (base, then variants)
   ========================================================= */

/* Base Gutenberg buttons */
.wp-block-button__link{
  border-radius:999px !important;
  padding:14px 18px !important;
  font-weight:300 !important;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.wp-block-buttons.is-vertical .wp-block-button__link{
  width:100%;
  justify-content:center;
}

/* Default buttons (hero etc), exclude services */
.entry-content .wp-block-buttons:not(.services-circles) .wp-block-button__link{
  background: var(--brand);
  color: #000;
  border: 0 !important;
}

/* CTA band button variant (white button on brand background) */
.cta-band .wp-block-button__link{
  background:#fff;
  color:#000 !important;
  border:0 !important;
  box-shadow:0 12px 24px rgba(0,0,0,.14);
}

.cta-band .wp-block-button__link:hover{
  background: var(--accent);
  color: #000 !important;
}


/* Squared buttons where you want the sharp look */
.entry-content .wp-block-buttons:not(.services-circles) .wp-block-button__link,
.cta-band .wp-block-button__link,
.floating-cta .primary{
  border-radius:0 !important;
  font-weight:700 !important;
  letter-spacing:.04em;
  text-transform:uppercase;
}

/* Hover polish */
.entry-content .wp-block-button__link:hover,
.floating-cta .primary:hover{
  opacity:.9;
  
  color: var(--btn-accent-hover) !important;
  background: var(--btn-accent-bg-hover) !important;

  border:1px solid var(--btn-accent-border-hover);
}

/* =========================================================
   7) Floating CTA and Back-to-top
   ========================================================= */

.floating-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1100;
  padding:10px 12px;
}

.floating-cta .inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.floating-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:12px;
  background:rgba(0,0,0,.12);
  text-decoration:none;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:14px;
  color:#0b1b1c;
}

.floating-cta .primary{
  background: var(--accent) !important;
  color:#000 !important;
  border:1px solid var(--accent);
}

@media (min-width: 700px){
  .floating-cta{
    left:8px;
    right:auto;
    bottom:8px;
    border:0;
    background:transparent;
    padding:0;
  }
  .floating-cta a{
    background:#7ee6ef;
    box-shadow:var(--shadow);
  }
}

/* Back to top */
.back-to-top{
  position:fixed;
  right:16px;
  bottom:78px;
  z-index:1100;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.back-to-top:hover{
  background: var(--brand);
  color: #fff;
}

.back-to-top.is-visible{ display:flex; }

/* Make room for bottom bar on mobile */
@media (max-width: 699px){
  body{ padding-bottom:72px; }
}

/* Avoid fixed header covering anchor jumps */
:target{ scroll-margin-top:90px; }

/* =========================================================
   8) CTA band component
   ========================================================= */

.cta-band{
  border-radius:24px;
  overflow:hidden;
}

.cta-band__inner{
  background:var(--brand);
  padding: 50px;
}

.cta-band__grid{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:18px;
}

.cta-band__media{
  flex:0 0 33.33%;
  min-width:220px;
}

.cta-band__media img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}

.cta-band__content{
  flex:1 1 0;
  min-width:260px;
  color:#fff;
}

.cta-band .cta-band__title{
  margin:0 0 12px;
  color:#000 !important;
  font-size: 2.2em;
  font-weight: normal;
}

.cta-band__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:calc(.667em + 2px) calc(1.333em + 2px);
  text-decoration:none;
  background: var(--btn-brand-bg-hover);
  color: var(--btn-brand);
  border:0 !important;
  box-shadow:0 12px 24px rgba(0,0,0,.14);
  font-weight: 700;
  text-transform: uppercase;
}

.cta-band__button:hover{
  color: var(--btn-accent);
  background: var(--btn-accent-bg);
  border:2px solid var(--btn-accent-border-hover);
}

@media (max-width: 900px){
  .cta-band__grid{
    flex-direction:column;
    text-align:center;
    align-items:center;
  }

  .cta-band__media{
    flex:0 0 auto;
    width:100%;
  }

  .cta-band__media img{
    width:66%;
    margin-left:auto;
    margin-right:auto;
  }
}

.cta-band__media img{
  border-radius:50%;
  aspect-ratio:1;
  object-fit:cover;
  max-width:280px;
}

.cta-band__media{
  display:flex;
  justify-content:center;
}

/* =========================================================
   9) Gallery and testimonials
   ========================================================= */

.wp-block-gallery{ gap:12px !important; }
.wp-block-gallery .wp-block-image img{ border-radius:18px; }

article.entry-content .wp-block-image:not(.is-style-rounded) img {
  border: 1px solid var(--brand);
  padding: 4px;
  border-radius: 0;
}

article.entry-content .wp-block-group p {
  text-align: justify;
}

article.entry-content .wp-block-group .wp-block-image {
  float: left;
  margin: .25rem 1.5rem 1rem 0;
  max-width: 300px;
}

article.entry-content .wp-block-group .wp-block-image img {
  width: 300px;
  height: auto;
  object-fit: cover;
}

article.entry-content .wp-block-group h2 {
  clear: both;
}

@media (max-width: 700px) {
  article.entry-content .wp-block-group .wp-block-image {
    float: none;
    max-width: 100%;
    margin: 0 0 1rem;
  }
  article.entry-content .wp-block-group .wp-block-image img {
    width: 100%;
    max-height: 300px;
  }
}

/* New clients CTA section */
.new-clients-home{
  text-align: center;
  padding: 42px 20px;
}
.new-clients-home p{
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .95rem;
  font-weight: 500;
  color: var(--brand-text);
  margin: 0 0 12px;
}
.new-clients-home h2{
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--brand-text);
  margin: 0;
  letter-spacing: .02em;
}

.testimonials-grid .wp-block-columns{ gap:18px; }

.testimonials-grid .wp-block-column{
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius:22px;
  padding:18px;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

/* =========================================================
   10) Collage (full bleed wrapper + centered grid + badge)
   ========================================================= */

.collage-wrap{
  position:relative;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding-left:20px;
  padding-right:20px;
}

/* Anchor the badge to the collage stage, not the viewport */
.collage-wrap > .wp-block-group__inner-container{
  width: min(1400px, 100%);
  margin-left:auto;
  margin-right:auto;
  position:relative;
  padding:0;
}

/* Gallery: simple centered grid */
.collage-wrap .wp-block-gallery.has-nested-images{
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;

  display:grid !important;
  gap:14px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

  justify-items:stretch !important;
}

/* Tile behavior for cropped galleries */
.collage-wrap .wp-block-gallery.is-cropped figure.wp-block-image{
  min-height:0 !important;
  aspect-ratio: 1 / 1;
}

.collage-wrap .wp-block-gallery.has-nested-images figure.wp-block-image{
  width:auto !important;
  margin:0 !important;
}

.collage-wrap .wp-block-gallery.has-nested-images figure.wp-block-image img{
  width:100% !important;
  height:100% !important;
  object-fit:cover;
  display:block;
  border-radius:18px;
}

/* Responsive collage columns */
@media (max-width: 900px){
  .collage-wrap .wp-block-gallery.has-nested-images{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px){
  .collage-wrap .wp-block-gallery.has-nested-images{
    grid-template-columns: 1fr !important;
  }
}

/* Badge (circle) */
.collage-badge{
  position:absolute;
  left:33%;
  top:50%;
  transform:translate(-50%, -50%);
  z-index:5;
  pointer-events:none;

  width:220px;
  height:220px;
  border-radius:9999px;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  padding:22px;
  background: var(--brand);
  color:#000;
  border:6px solid rgba(255,255,255,.92);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.collage-badge p{
  margin:0;
  font-weight:900;
  letter-spacing:.02em;
  line-height:1.15;
  font-size:18px;
  max-width:160px;
  color: #000;
  font-family: "Google Sans Flex", system-ui, sans-serif;
}

/* Hide badge when collage becomes 2 columns */
@media (max-width: 900px){
  .collage-badge{ display:none !important; }
}

@media (max-width: 699px){
  .collage-badge{
    width:170px;
    height:170px;
    padding:18px;
    border-width:5px;
  }
  .collage-badge p{
    font-size:15px;
    max-width:130px;
  }
}

/* =========================================================
   11) Services circles (final behavior)
   Buttons block has class: services-circles
   Goals:
   - circle outline at rest
   - top bar at rest
   - bottom bar at rest (background stripe, no animation)
   - on hover: fill brand, label lifts, side bars appear, READ MORE centered below label
   ========================================================= */

.services-circles{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:32px 40px;
  margin-top: 30px;
}

.services-circles .wp-block-button{ flex:0 0 auto; }

.services-circles .wp-block-button__link{
  position:relative !important;
  overflow:hidden;

  width:240px !important;
  height:240px !important;
  padding:0 !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;

  background-color:transparent !important;
  color:#1f2937 !important;

  border:2px solid rgba(245, 103, 86, .28) !important;
  border-radius:50% !important;

  box-shadow:none !important;

  font-weight:800 !important;
  letter-spacing:.22em !important;
  text-transform:uppercase !important;
  font-size:14px !important;
  line-height:1.25 !important;

  /* Resting bottom bar (snap on/off, no animated fly-in) */
  background-image: linear-gradient(rgba(245, 103, 86, .55), rgba(245, 103, 86, .55)) !important;
  background-repeat:no-repeat !important;
  background-size:34px 2px !important;
  background-position:50% calc(100% - 78px) !important;

  transition-property: background-color, color, border-color, transform !important;
  transition-duration: .25s !important;
  transition-timing-function: ease !important;
}

/* Top bar at rest */
.services-circles .wp-block-button__link::before{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:34px;
  height:2px;
  top:78px;
  background:rgba(245, 103, 86, .55);
  opacity:1;
  transition: opacity .2s ease;
}

/* Label span must be movable */
.services-circles .wp-block-button__link span{
  display:inline-block !important;
  position:relative !important;
  transition: transform .25s ease;
  will-change:transform;
}

/* Side bars (appear on hover) */
.services-circles .wp-block-button__link span::before,
.services-circles .wp-block-button__link span::after{
  content:"";
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:14px;
  height:2px;
  background:#fff;
  opacity:0;
  transition: opacity .25s ease;
}

.services-circles .wp-block-button__link span::before{ left:-26px; }
.services-circles .wp-block-button__link span::after{ right:-26px; }

/* READ MORE */
.services-circles .wp-block-button__link::after{
  content:"READ MORE";
  position:absolute;
  left:50%;
  top:50%;
  transform: translate3d(-50%, 22px, 0);
  text-align:center;
  width:max-content;

  font-size:10px !important;
  letter-spacing:.18em !important;
  font-weight:800 !important;
  text-transform:uppercase;
  white-space:nowrap;

  color:#fff;
  opacity:0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events:none;
}

/* Hover state */
.services-circles .wp-block-button__link:hover{
  background-color:var(--brand) !important;
  color:#fff !important;
  border-color:var(--brand) !important;

  /* remove resting bottom bar instantly */
  background-image:none !important;
  text-decoration: none;
}

.services-circles .wp-block-button__link:hover::before{
  background: rgba(255, 255, 255, 1.0) !important;
}

.services-circles .wp-block-button__link:hover span{
  transform: translateY(-22px) !important;
}

.services-circles .wp-block-button__link:hover span::before,
.services-circles .wp-block-button__link:hover span::after{
  opacity:1;
}

.services-circles .wp-block-button__link:hover::after{
  opacity:1 !important;
  transform: translate3d(-50%, 42px, 0) !important;
}

/* Mobile tuning */
@media (max-width: 699px){
  .services-circles{ gap:22px; }

  .services-circles .wp-block-button__link{
    width:190px !important;
    height:190px !important;
    font-size:12px !important;
    letter-spacing:.18em !important;
    background-position:50% calc(100% - 62px) !important;
  }

  .services-circles .wp-block-button__link::before{ top:62px; }

  .services-circles .wp-block-button__link:hover span{
    transform: translateY(-18px) !important;
  }

  .services-circles .wp-block-button__link::after{
    font-size:9px !important;
    transform: translate3d(-50%, 18px, 0) !important;
  }

  .services-circles .wp-block-button__link:hover::after{
    transform: translate3d(-50%, 36px, 0) !important;
  }
}

/* =========================================================
   11) Footer
   ========================================================= */

.site-footer{
  padding: 28px 0;
  background: #f7f7f8;
  border-top: 1px solid rgba(0,0,0,.08);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.6fr;
  gap: 22px;
  align-items: start;
}

.footer-card{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img,
.footer-logo .custom-logo{
  display: block;
  width: min(220px, 100%);
  height: auto;
}

.footer-address{
  margin: 12px 0 10px;
  font-style: normal;
  color: rgba(0,0,0,.65);
  line-height: 1.4;
}

.footer-phone{
  display: inline-block;
  font-weight: 800;
  text-decoration: none;
  margin: 2px 0 12px;
}

.footer-social{
  display: flex;
  gap: 10px;
  margin: 14px 0 14px;
}

.social-btn{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.9);
  text-decoration: none;
  font-weight: 800;
}

.footer-meta{
  font-size: .9rem;
  color: rgba(0,0,0,.55);
}

.footer-links a{
  text-decoration: none;
}

.footer-links .dot{
  margin: 0 8px;
  opacity: .6;
}

.footer-title{
  margin: 0 0 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 1.7rem;
}

a.address{
  text-decoration: none;
}

a.address:hover{
  text-decoration: underline;
  pointer: cursor;
  color: #000;
}

/* Hours card should keep left/right structure */
.footer-hours{
  align-items: stretch;
}

/* Keep hours rows aligned properly */
.footer-hours .hours-list{
  width: 100%;
  margin: 14px 0 14px 0;
}

.footer-hours .hours-list li{
  justify-content: space-between;
}

/* Center footer meta text */
.footer-meta{
  text-align: center;
}

/* Center social buttons row */
.footer-social{
  justify-content: center;
}

/* Map should remain centered but full width */

.footer-map{
  align-items: stretch;
  padding: 0;
}

.footer-map .map-embed{
  width: 100%;
}

/* Center logo block itself */
.footer-logo{
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Center logo image */
.footer-logo img,
.footer-logo .custom-logo{
  margin-left: auto;
  margin-right: auto;
}

/* Center address text block */
.footer-address{
  text-align: center;
}

.footer-title {
  color:var(--brand-text);
  text-transform: uppercase;
}

.social-btn svg{
  width:1.3em;
  height:1.3em;
}

.social-btn:hover{
  background: #f0f0f0;
  box-shadow:
    0 2px 6px rgba(55,55,55,.45),
    0 0 1px rgba(55,55,55,.6);
}

.hours-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.hours-list li{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(0,0,0,.68);
}

.hours-list li span:first-child{
  font-weight: 700;
  color: rgba(0,0,0,.75);
}

.hours-note{
  margin: 12px 0 0;
  color: rgba(0,0,0,.55);
  font-style: italic;
  line-height: 1.35;
}

.map-embed{
  width: 100%;
  aspect-ratio: 13 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);

  /*box-shadow: -5px 5px 0 rgba(0,0,0,.15);*/
}

.map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Stack on mobile */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px){
  body.home .wp-block-cover.alignfull:first-of-type{
    min-height: 70svh !important;
    align-items: flex-start;
  }
}

.cover p.pre-header{
  color:#fff;
  text-transform:uppercase;
  font-weight:500;
  text-shadow: 0 2px 5px #000 !important;
  font-size:clamp(1rem, 2vw, 1.3rem);
  line-height:1.05;
  letter-spacing:0.08em;

  text-shadow: 1px 2px 2px #000;
}

.cover h1{
  color:#fff;
  text-transform:uppercase;
  font-weight:800;
  font-size:clamp(2.2rem, 5vw, 3.5rem);
  line-height:1.05;
  letter-spacing:0.08em;

  text-shadow: 2px 2px 3px #000;
  /*-webkit-text-stroke: 1px rgba(0,0,0,.25);*/
}

.cover p.offer{
  color:#000;
  text-transform:uppercase;
  font-weight:800;
  font-size:clamp(1.2rem, 2.2vw, 1.75rem);
  line-height:1.05;
  letter-spacing:0.3em;

  /**text-shadow: 3px 1px 3px rgba(255,255,255,.6), -3px -1px 5px rgba(255,255,255,.6);**/
  text-shadow: 2px 2px 10px #fff;
}

/* Make the hamburger button 40% wider and 20% taller */
.header-actions .icon-btn{
  width: 62px;  /* 44 * 1.4 */
  height: 53px; /* 44 * 1.2 */
}

/* Keep the same ratio on mobile too */
@media (max-width: 899px){
  .header-actions .icon-btn{
    width: 38px; /* 38 * 1.4 */
    height: 38px;/* 38 * 1.2 */
    border: 1px solid rgba(0,0,0, 1);
  }
}
.header-actions a.icon-btn{
  padding: 8px;
}

.header-actions .icon-btn svg{
  width: 30px;  /* 22 * 1.2 */
  height: 30px; /* 22 * 1.2 */
}

.header-actions .icon-btn:hover{
  background: var(--brand);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* =========================================================
   Overlay navigation (hamburger)
   ========================================================= */

.menu-overlay{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 14px;
  background: rgba(0,0,0,.87);
}

.menu-overlay.is-open{ display: flex; }

html.menu-open,
body.menu-open{
  overflow: hidden;
}

.menu-overlay-inner{
  width: min(560px, 92vw);
  position: relative;
  padding: 56px 20px 22px;
  text-align: center;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
}

.menu-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: transparent;
}

.menu-close svg{
  width: 24px;
  height: 24px;
  background: var(--brand);
}

.menu-overlay-nav{
  position: relative;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;

  /* spacing so last item is reachable */
  padding-bottom: 24px;
}

.menu-overlay-nav::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  width: 2px;
  background: rgba(255,255,255,.55);
}

/* Top-level list */
.overlay-menu{
  list-style: none;
  margin: 0;
  padding: 0 26px 0 0;
}

.overlay-menu > li{
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
}

.overlay-menu > li > a{
  display: inline-block;
  padding: 10px 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  color: #fff;
}

.overlay-menu > li.current-menu-item > a,
.overlay-menu > li > a:focus{
  outline: 2px solid rgba(255,255,255,.9);
  outline-offset: 3px;
}

/* Plus / minus button */
.submenu-toggle{
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

/* Submenu drawer (supports wp_nav_menu + wp_page_menu) */
.overlay-menu .sub-menu,
.overlay-menu .children{
  grid-column: 1 / -1;
  list-style: none;
  margin: 0;
  padding: 3px 0 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease;
}

.overlay-menu .sub-menu.is-open,
.overlay-menu .children.is-open{
  max-height: 900px;
}

.overlay-menu .sub-menu a,
.overlay-menu .children a{
  display: block;
  width: min(420px, 100%);
  margin: 10px auto 0;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  text-decoration: none;
  text-transform: none;
  letter-spacing: .02em;
  border: 1px solid rgba(0,0,0,.12);
}

/* Do not add extra vertical rhythm after expandable items */
.overlay-menu > li.menu-item-has-children{
  padding-bottom: 6px;
}

.overlay-menu .sub-menu:not(.is-open),
.overlay-menu .children:not(.is-open){
  padding-top: 0;
}

/* Overlay menu: prevent left-side clipping inside the scroll container */
.menu-overlay-nav{
  padding-left: 10px;     /* give borders/outlines room */
  padding-right: 10px;    /* keeps symmetry with the scrollbar rail */
}

/* Your list currently only pads on the right, add left padding too */
.overlay-menu{
  padding: 0 26px;        /* was: 0 26px 0 0 */
}

.overlay-menu > li > a{
  background-clip: padding-box; /* avoids weird clipping artifacts */
}

.articles-list{
  display: grid;
  gap: 40px;
}

.article-card{
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
}

.article-media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.article-media--placeholder{
  width: 100%;
  aspect-ratio: 16 / 10;
  background: rgba(0,0,0,.06);
  border-radius: 8px;
}

.article-title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.05;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-text);
}

.article-title a{ text-decoration: none; }

.article-excerpt{
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}

.article-more{
  margin: 0;
  text-align: center;
}

.article-more-link{
  color: var(--brand-text);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 900px){
  .article-card{
    grid-template-columns: 1fr;
  }
  .article-more{
    text-align: left;
  }
}

.article-layout{
  padding: 34px 0;
}

.article-layout__inner{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}

.article-sidebar{
  position: sticky;
  top: 96px; /* adjust if your header height differs */
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.article-sidebar__title{
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.article-sidebar__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.article-sidebar__link{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.65);
}

.article-sidebar__link:hover{
  border-color: rgba(0,0,0,.12);
}

.article-sidebar__thumb img{
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  display:block;
}

.article-sidebar__thumb--placeholder{
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display:block;
  background: rgba(0,0,0,.08);
}

.article-sidebar__posttitle{
  display:block;
  font-weight: 650;
  line-height: 1.2;
}

.article-sidebar__meta{
  display:block;
  font-size: 12px;
  opacity: .7;
  margin-top: 3px;
}

.article-main{
  min-width: 0;
}

.article-title{
  margin: 0 0 8px;
}

.article-meta{
  opacity: .75;
  font-size: 14px;
  display:flex;
  gap: 8px;
  align-items:center;
}

.article-featured img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  display:block;
  margin: 18px 0 8px;
}

@media (max-width: 980px){
  .article-layout__inner{
    grid-template-columns: 1fr;
  }
  .article-sidebar{
    position: relative;
    top: auto;
    order: 2;
  }
}

/* Featured image like your screenshot: top-right, text wraps */
.article-featured{
  float: right;
  width: min(560px, 44%);
  margin: 0 0 18px 28px;

  background: #fff;
  padding: 10px;
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.article-featured img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0; /* screenshot has square corners */
  margin: 0;
}

/* Make sure the float doesn't mess up layout below */
.article-content::after{
  content: "";
  display: block;
  clear: both;
}

.article-sidebar__excerpt {
  padding-top: 2px;
}

/* Mobile: stack image above content */
@media (max-width: 900px){
  .article-featured{
    float: none;
    width: 100%;
    margin: 14px 0;
  }
}

a.phone, .phone a{
  color: var(--brand-text) !important;
  text-decoration: underline;
  font-weight: 800 !important;
}

a.phone:hover, .phone a:hover{
  color: #000 !important;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:start;
}

.contact-card{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.contact-title{
  margin: 0 0 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
  color: var(--brand-text);
}

.contact-subtitle{
  margin: 18px 0 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .9rem;
  color: var(--brand-text);
}

.contact-lines{
  display:grid;
  gap: 10px;
  color: rgba(0,0,0,.68);
}

.contact-line strong{
  color: rgba(0,0,0,.75);
}

.contact-form{
  margin-top: 10px;
}

@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.hhfa-svc-top{
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.hhfa-svc-top__media{
  flex: 0 0 42%;
  min-width: 260px;
}

.hhfa-svc-top__toc{
  flex: 1 1 auto;
  min-width: 240px;
}

.hhfa-svc-top__img{
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

.hhfa-svc-top *{
  max-width: 100%;
}

.hhfa-svc-toc__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hhfa-svc-toc__link{
  text-decoration: underline;
  font-weight: 700;
}

.hhfa-svc{
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}

.hhfa-svc__body{
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 16px;
  align-items: start;
}

.hhfa-svc__body.hhfa-svc--flipped{
  grid-template-columns: 1fr 400px;
}

.hhfa-svc__body.hhfa-svc--flipped .hhfa-svc__imglink{
  order: 2;
}

.hhfa-svc__body.hhfa-svc--flipped .hhfa-svc__content{
  order: 1;
}

.hhfa-svc__img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.hhfa-svc__title{
  margin: 0 0 8px;
}

.hhfa-svc__excerpt{
  margin: 0 0 12px;
  opacity: .9;
}

.hhfa-svc__desc{
  margin: 0 0 12px;
  opacity: .9;
}

.hhfa-svc__more{
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 600;
}

.hhfa-svc__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hhfa-svc__actions .btn--brand:hover{
  color: var(--brand-text);
}

.btn.btn--ghost{
  background: transparent;
  border: 1px solid rgba(0,0,0,.18);
}

.btn.btn--ghost:hover{
  background: var(--btn-accent-bg);
  border: 1px solid var(--btn-accent-border-hover);
}

@media (max-width: 900px){
  .hhfa-svc-top{
    grid-template-columns: 1fr;
  }
  .hhfa-svc__body,
  .hhfa-svc__body.hhfa-svc--flipped{
    grid-template-columns: 1fr;
  }
  .hhfa-svc__body.hhfa-svc--flipped .hhfa-svc__imglink,
  .hhfa-svc__body.hhfa-svc--flipped .hhfa-svc__content{
    order: unset;
  }
  .hhfa-svc__imglink{
    max-width: 340px;
  }
}

@media (max-width: 900px){
  .hhfa-svc-top{
    flex-direction: column;
  }
  .hhfa-svc-top__media{
    flex-basis: auto;
    min-width: 0;
  }
}

.error-404-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}
.error-404-inner .error-404-image{
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 32px;
  display: block;
}
.error-404-inner p:first-of-type{
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brand-text);
  margin: 0 0 8px;
}
.error-404-inner p:nth-of-type(2){
  font-size: 1.05rem;
  color: #000;
  line-height: 1.6;
  margin: 0 0 32px;
}
.error-actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.has-text-align-left {
    text-align: left !important;
}

.space-top {
  margin-top: 50px;
}

.vetter button.btn.btn-vetter span:after {
    content: "Schedule Appointment";
    font-size: 16px;
}

.vetter button.btn.btn-vetter span {
    font-size: 0;
}

/* Reserve space so there's no layout shift during VetterSoftware load/swap */
#vetter-btn {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loading spinner while VetterSoftware initializes */
.vetter button.btn.btn-vetter[disabled] {
    position: relative;
    opacity: 1 !important; /* override inline opacity: .65 */
    cursor: wait;
    padding-left: 2.6em;
    transition: opacity 0.2s;
}

.vetter button.btn.btn-vetter[disabled]::before {
    content: '';
    position: absolute;
    left: 0.8em;
    top: 50%;
    width: 1em;
    height: 1em;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: vetter-spin 0.7s linear infinite;
    transform: translateY(-50%);
}

.vetter button.btn.btn-vetter[disabled] span:after {
    content: "Loading…";
}

@keyframes vetter-spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Rate us stars */
.rate-us-page-dm{
  text-align: center;
  padding: 32px 0;
}
.rate-us-page-dm img{
  max-width: 220px;
}
/* New clients page — center golden retriever image */
article.entry-content .wp-block-image:has(img.wp-image-731) { float: none; width: fit-content; margin-left: auto; margin-right: auto; }

/* About page team photo — widen first column to fit 400px image */
article.entry-content .wp-block-columns:has(.wp-image-1149) .wp-block-column:first-child { flex-basis: 40% !important; }
article.entry-content .wp-block-columns:has(.wp-image-1149) .wp-block-column:last-child  { flex-basis: 58% !important; }
article.entry-content .wp-block-group .wp-block-image:has(img.wp-image-1149) { max-width: 400px; }
article.entry-content .wp-block-group .wp-block-image img.wp-image-1149 { width: 100%; max-width: 400px; }

/* Feedback thumbs (how are we doing page) */
.wp-image-898,
.wp-image-897{
  transition: transform .2s ease, filter .2s ease;
  cursor: pointer;
  border: none !important;
  box-shadow: none !important;
}
.wp-image-898:hover{
  transform: scale(1.12);
  filter: brightness(1.1);
}
.wp-image-897:hover{
  transform: scale(1.12);
  filter: brightness(1.1);
}

.rtg{
  display: inline-flex;
  gap: 8px;
}
.rtg a{
  font-size: 0;
  text-decoration: none;
  display: block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  transition: transform .15s ease, color .15s ease;
}
.rtg a::before{
  content: "\2605";
  font-size: 2.5rem;
  color: #ccc;
}
.rtg a:hover::before,
.rtg a:hover ~ a::before{
  color: #f5c518;
}
.rtg a:hover{
  transform: scale(1.2);
}
/* Reverse order so hover fills left-to-right */
.rtg{
  direction: rtl;
}
.rtg a{
  direction: ltr;
}

/* =========================================================
   Business hours & map shortcodes
   ========================================================= */

.hhfa-hours{
  max-width: 420px;
}

.hhfa-map{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
}
.hhfa-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   Contact form shortcode
   ========================================================= */

.hhfa-contact-form label{
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: .95rem;
}
.hhfa-contact-form label span{
  color: var(--brand-text);
}
.hhfa-contact-form input[type="text"],
.hhfa-contact-form input[type="tel"],
.hhfa-contact-form input[type="email"],
.hhfa-contact-form textarea{
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s;
}
.hhfa-contact-form input:focus,
.hhfa-contact-form textarea:focus{
  outline: none;
  border-color: var(--brand);
}
.hhfa-contact-form textarea{
  resize: vertical;
}

.hhfa-cf-field{
  margin-bottom: 16px;
}
.hhfa-cf-row--half{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px){
  .hhfa-cf-row--half{
    grid-template-columns: 1fr;
  }
}

/* Honeypot: hidden from humans */
.hhfa-cf-hp{
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.hhfa-form-success{
  padding: 20px 24px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  color: #166534;
}
.hhfa-form-success p{
  margin: 0;
}
.hhfa-form-errors{
  padding: 16px 20px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #991b1b;
  margin-bottom: 20px;
}
.hhfa-form-errors p{
  margin: 0 0 4px;
}
.hhfa-form-errors p:last-child{
  margin-bottom: 0;
}

/* Sitemap */
.sitemap-list{
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.sitemap-list li{
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.sitemap-list .children{
  list-style: none;
  margin: 4px 0 0;
  padding-left: 20px;
}

.sitemap-list a{
  text-decoration: none;
  color: var(--brand-text);
}

.sitemap-list a:hover{
  text-decoration: underline;
}