/* Inner service pages — reuse AngelGranit look */
.page-main { padding: 1.5rem 0 3rem; }
.page-wrap { width: min(860px, calc(100% - 2 * var(--pad, 1.25rem))); margin-inline: auto; }
.page-wrap--wide { width: min(1080px, calc(100% - 2 * var(--pad, 1.25rem))); margin-inline: auto; }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; gap: 0.35rem 0.55rem;
  margin: 0 0 1.25rem; padding: 0; list-style: none;
  font-family: var(--font-mono, monospace); font-size: 0.72rem; color: var(--muted, #8e8980);
}
.breadcrumbs a { color: var(--muted, #8e8980); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold, #d4af57); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 0.55rem; opacity: 0.5; }
.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  color: #f7efd8;
  line-height: 1.2;
}
.page-hero .lead { color: var(--muted, #8e8980); margin: 0 0 1.25rem; }
.page-cta { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 0 0 1.5rem; }
.btn-site {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.55rem; padding: 0.55rem 1rem;
  border: 1px solid transparent; border-radius: 4px;
  font-family: var(--font-mono, monospace); font-size: 0.72rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
}
.btn-site--gold {
  border-color: #d4af57;
  background: linear-gradient(180deg, #e0c36a 0%, #d4af57 55%, #8a6a28 100%);
  color: #1a1408;
}
.btn-site--ghost { border-color: rgba(236,232,224,0.18); color: #ece8e0; background: transparent; }
.btn-site--wa { border-color: #25d366; background: #25d366; color: #04140a; }
.page-figure {
  margin: 0 0 1.75rem; border: 1px solid rgba(236,232,224,0.1); border-radius: 4px; overflow: hidden;
}
.page-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.page-article h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.25rem; color: #d4af57;
}
.page-article p { margin: 0 0 1rem; color: rgba(245,240,230,0.88); line-height: 1.75; }
.page-faq details {
  border: 1px solid rgba(236,232,224,0.1);
  border-radius: 4px; padding: 0.85rem 1rem; margin: 0 0 0.55rem; background: #111116;
}
.page-faq summary { cursor: pointer; color: #f5f2ea; font-weight: 600; }
.page-faq p { margin: 0.65rem 0 0; color: #8e8980; }
.related-grid {
  display: grid; gap: 0.75rem; margin-top: 1rem;
}
@media (min-width: 720px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
.related-grid a {
  display: block; padding: 1rem; border: 1px solid rgba(236,232,224,0.1);
  border-radius: 4px; background: #111116; color: inherit; text-decoration: none;
}
.related-grid a:hover { border-color: #d4af57; }
.related-grid strong { display: block; color: #d4af57; margin-bottom: 0.35rem; }
.related-grid span { font-size: 0.9rem; color: #8e8980; }
.page-footer {
  margin-top: 2rem; padding: 2rem var(--pad, 1.25rem) 3rem;
  border-top: 1px solid rgba(236,232,224,0.1);
  text-align: center; color: #8e8980; font-size: 0.92rem;
}
.page-footer strong {
  display: block; margin-bottom: 0.35rem;
  font-family: var(--font-display, Georgia, serif); color: #d4af57; letter-spacing: 0.08em;
}
.page-footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.25rem;
  margin: 1rem 0 0; padding: 0; list-style: none;
}
.page-footer-links a { color: #8e8980; font-family: var(--font-mono, monospace); font-size: 0.72rem; text-decoration: none; }
.page-footer-links a:hover { color: #d4af57; }
.hub-grid {
  display: grid; gap: 0.75rem;
}
@media (min-width: 640px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .hub-grid { grid-template-columns: repeat(3, 1fr); } }
.hub-card {
  display: block; padding: 1.1rem; border: 1px solid rgba(236,232,224,0.1);
  border-radius: 4px; background: #111116; color: inherit; text-decoration: none;
}
.hub-card:hover { border-color: #d4af57; }
.hub-card strong { display: block; color: #d4af57; margin-bottom: 0.35rem; }
.hub-card span { font-size: 0.9rem; color: #8e8980; }

/* Works catalog cards */
.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  padding: 0.25rem;
}
@media (min-width: 640px) { .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .works-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.work-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  background: linear-gradient(180deg, #15161a 0%, #101114 100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, box-shadow 0.45s ease;
}
.work-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
}
.work-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0a0c;
}
.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.work-card:hover .work-card__media img { transform: scale(1.07); }
.work-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  padding: 1.15rem 1.15rem 1.25rem;
}
.work-card__body h3 {
  margin: 0;
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.08rem;
  color: #f5f5f2;
  line-height: 1.25;
}
.work-card__body p {
  margin: 0;
  color: rgba(236, 232, 224, 0.62);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}
.work-card__price {
  font-family: var(--font-mono, monospace);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #f7f7f5;
}
.work-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 2.6rem;
  margin-top: 0.35rem;
  padding: 0.55rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  color: #f7f7f5;
  text-decoration: none;
  font-size: 0.86rem;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.work-card:hover .work-card__btn {
  background: #f7f7f5;
  border-color: #f7f7f5;
  color: #0b0b0c;
}
@media (prefers-reduced-motion: reduce) {
  .work-card,
  .work-card:hover { transform: none; }
  .work-card__media img { transition: none; }
}

.loc-map-block { margin: 2rem 0; }
.loc-map {
  width: 100%;
  min-height: 340px;
  border: 1px solid rgba(236,232,224,0.12);
  border-radius: 4px;
  background: #111116;
}
.loc-map-links { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 0.85rem; }
.loc-map .leaflet-container { width: 100%; height: 340px; background: #111116; }
.loc-map .leaflet-control-attribution { background: rgba(7,7,8,0.85); color: #8e8980; }
.loc-map .leaflet-control-attribution a { color: #d4af57; }

/* Final optimize: readability + touch + a11y */
img { max-width: 100%; height: auto; }
.page-article h3 {
  margin: 1.35rem 0 0.55rem;
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.05rem;
  color: #e8d9a8;
}
.page-faq summary:focus-visible {
  outline: 2px solid var(--gold, #d4af57);
  outline-offset: 2px;
}
@media (max-width: 720px) {
  .btn-site { min-height: 2.75rem; }
  .page-cta { gap: 0.65rem; }
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
}

/* SILO linking blocks — reuse related-grid, no redesign */
.silo-links{margin:2rem 0 1rem}
.silo-links h2{margin:1.75rem 0 0.75rem;font-family:var(--font-display,Georgia,serif);font-size:1.2rem;color:#d4af57}

.senior-content-expand h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.25rem;
  color: #d4af57;
}
.page-footer .page-cta .btn-site { min-height: 2.75rem; }
