/* Happy Hippo Plumbing - matrix bones CSS
 * Minimal structural styling only. The kit's full visual layer replaces and
 * extends this on fork. Uses the brand tokens from colors.css. */

.hh-main { max-width: 1080px; margin: 0 auto; padding: 1.5rem; color: var(--text); font-family: system-ui, sans-serif; line-height: 1.6; }
.hh-main h1 { color: var(--text-strong); font-size: 1.8rem; margin: 0 0 .5rem; }
.hh-main h2 { color: var(--text-strong); font-size: 1.2rem; margin: 1.5rem 0 .5rem; }
.hh-main a { color: var(--link); }
.hh-main a:hover { color: var(--link-hover); }

.hh-breadcrumb { font-size: .85rem; color: var(--gray); margin-bottom: 1rem; }
.hh-breadcrumb .hh-sep { color: var(--gray-light); }

.hh-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin: 1rem 0; }
.hh-cta a, .hh-cta button { display: inline-block; padding: .7rem 1.2rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-family: inherit; font-size: 1rem; line-height: 1.2; cursor: pointer; border: 0; background: none; }
/* Scoped with the .hh-cta ancestor so these win over the generic .hh-main a
 * link color (which is more specific than a lone .hh-cta__call). Without this,
 * the button text inherits the link navy and disappears on the navy fill. */
.hh-cta .hh-cta__call { background: var(--blue); color: #fff; }
.hh-cta .hh-cta__call:hover { background: var(--blue-hover); color: #fff; }
.hh-cta .hh-cta__book { background: transparent; color: var(--blue); border: 2px solid var(--blue); }

.hh-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; margin: 1rem 0; }
@media (max-width: 720px) { .hh-grid { grid-template-columns: 1fr; } }

.hh-related ul { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .4rem; }
.hh-related li a { display: block; padding: .5rem .7rem; border: 1px solid var(--border); border-radius: 8px; text-decoration: none; }
.hh-related li a:hover { border-color: var(--blue); }

/* Marked placeholders: deliberately loud so empty slots are never mistaken for content. */
.hh-ph { border: 1px dashed var(--blue-bright); border-radius: 8px; padding: .8rem 1rem; margin: .6rem 0; background: rgba(72,151,217,.06); }
.hh-ph__label { display: block; font-weight: 600; color: var(--blue); font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; }
.hh-ph__hint { display: block; color: var(--gray); font-size: .9rem; margin-top: .25rem; }

.hh-img-ph { display: flex; align-items: center; justify-content: center; border: 1px dashed var(--gray-light); border-radius: 8px; background: rgba(190,194,202,.12); color: var(--gray); font-size: .85rem; text-align: center; padding: 1rem; }

.hh-sitehead { padding: 0.2rem 1.5rem; border-bottom: 1px solid var(--border); }
.hh-sitefoot { margin-top: 2rem; padding: 1.5rem; background: var(--ink); }
.hh-sig { color: var(--gray-light); text-align: center; font-size: .9rem; margin: 0; }

/* Primary nav (bones: CSS hover/focus dropdown. Kit provides mobile + JS). */
.hh-sitehead { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.hh-sitehead__logo img { display: block; height: auto; width: 220px; }
.hh-sitehead__call { margin-left: auto; font-size: 2.5rem; font-weight: 700; color: var(--blue); text-decoration: none; white-space: nowrap; }
.hh-nav__list { list-style: none; display: flex; gap: 1.1rem; margin: 0; padding: 0; }
.hh-nav__item { position: relative; }
.hh-nav__item > a { text-decoration: none; color: var(--text-strong); font-weight: 500; padding: .4rem 0; display: inline-block; }
.hh-nav__item > a:hover, .hh-nav__item > a[aria-current="page"] { color: var(--blue); }
.hh-nav__sub { list-style: none; margin: 0; padding: .4rem 0; position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; display: none; z-index: 50; }
.hh-nav__has-sub:hover .hh-nav__sub, .hh-nav__has-sub:focus-within .hh-nav__sub { display: block; }
.hh-nav__sub a { display: block; padding: .45rem .9rem; text-decoration: none; color: var(--text); }
.hh-nav__sub a:hover { background: rgba(0,61,149,.06); color: var(--blue); }
.hh-nav__all { font-weight: 600; border-top: 1px solid var(--border); margin-top: .3rem; }
@media (max-width: 860px) { .hh-nav__list { flex-wrap: wrap; gap: .6rem 1rem; } .hh-sitehead__call { margin-left: 0; } }

/* ---- Footer chrome: NAP, the dual signature, copyright (kit fork) ---- */
.hh-sitefoot { text-align: center; }
.hh-footmeta { color: var(--gray-light); font-size: .9rem; line-height: 1.7; margin: 0 0 .75rem; display: flex; flex-wrap: wrap; gap: .35rem 1rem; justify-content: center; }
.hh-footmeta__name { font-weight: 600; color: var(--surface); }
.hh-footmeta a { color: var(--gray-light); text-decoration: none; }
.hh-footmeta a:hover { color: var(--blue-bright); }
.hh-copyright { color: var(--gray-light); font-size: .8rem; margin: .6rem 0 0; opacity: .8; }

/* The house signature. Native (inherited) at rest so it never clashes with the
 * navy footer; on hover/focus ONLY, the VioLev half lights violet and the
 * Protected half lights SecureLynx cyan. This hover violet is the one sanctioned
 * place VioLev's violet appears on a client site (PPP signature spec); it stays
 * a scoped literal here, deliberately NOT a token in colors.css. */
.hh-sig a { color: inherit; text-decoration: none; }
.hh-sig a:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; border-radius: 2px; }
.hh-sig .sig-violev:hover, .hh-sig .sig-violev:focus-visible { color: #8B5CFF; text-shadow: 0 0 14px rgba(139,92,255,.30); }
.hh-sig .sig-lynx:hover,   .hh-sig .sig-lynx:focus-visible   { color: #00E6FF; text-shadow: 0 0 14px rgba(0,230,255,.30); }
