/* pages.css — additions used by the inner pages (services, work) and the shared
   footer nav. index.html's original CSS is untouched; styles.css is a verbatim
   copy of it so inner pages inherit the exact same look. */

.page-hero { padding: 2.5rem 0 2.5rem; border-bottom: 1.5px solid var(--border); margin-bottom: 3rem; }
.breadcrumb { font-size: 14px; color: var(--gray); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }
.page-hero .section-tag { display: inline-block; margin-bottom: 1rem; }
.page-hero h1 { font-family: 'Barlow', sans-serif; font-size: clamp(34px, 6vw, 56px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 1rem; max-width: 760px; }
.page-hero .lede { font-size: 20px; color: var(--ink-2); line-height: 1.6; max-width: 660px; margin-bottom: 1.5rem; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary { background: var(--yellow); color: var(--ink); font-size: 16px; font-weight: 700; padding: 12px 26px; border-radius: 100px; text-decoration: none; border: 1.5px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); transition: transform .15s, box-shadow .15s; white-space: nowrap; }
.btn-primary:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }
.btn-secondary { background: var(--white); color: var(--ink); font-size: 16px; font-weight: 500; padding: 12px 26px; border-radius: 100px; text-decoration: none; border: 1.5px solid var(--ink); white-space: nowrap; }
.btn-secondary:hover { background: var(--gray-light); }

.prose p { font-size: 18px; color: var(--ink-2); line-height: 1.7; margin-bottom: 1rem; max-width: 720px; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--blue-link); }
.prose strong { color: var(--ink); }

a.del-row { text-decoration: none; color: inherit; }
.del-row .del-title a { color: inherit; text-decoration: none; }

.hero-figure { border: 1.5px solid var(--ink); border-radius: 16px; overflow: hidden; box-shadow: 5px 5px 0 var(--ink); margin-bottom: 3.5rem; }
.hero-figure img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 12px; }
.faq-item[open] { border-color: var(--ink); }
.faq-item summary { cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; color: var(--ink); padding: 1rem 1.25rem; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-weight: 500; color: var(--gray); flex-shrink: 0; }
.faq-item[open] summary::after { content: '–'; }
.faq-answer { font-size: 17px; color: var(--ink-2); line-height: 1.65; padding: 0 1.25rem 1.1rem; max-width: 720px; }
.faq-answer a { color: var(--blue-link); }

.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }
.work-card { display: block; text-decoration: none; color: inherit; border: 1.5px solid var(--ink); border-radius: 12px; overflow: hidden; background: var(--white); transition: transform .15s, box-shadow .15s; }
.work-card:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }
.work-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; border-bottom: 1.5px solid var(--ink); }
.work-card-block { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; border-bottom: 1.5px solid var(--ink); font-family: 'Barlow', sans-serif; font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.work-card-block.c-yellow { background: var(--yellow); }
.work-card-block.c-blue { background: var(--blue-light); }
.work-card-block.c-purple { background: var(--purple-light); }
.work-card-body { padding: 1rem 1.1rem; }
.work-card-stat { font-family: 'Barlow', sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 4px; color: var(--ink); }
.work-card-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.work-card-sub { font-size: 14px; color: var(--gray); line-height: 1.4; }

.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 1rem; }
.footer-nav a { font-size: 14px; color: var(--gray); text-decoration: none; }
.footer-nav a:hover { color: var(--ink); text-decoration: underline; }

.who-card a { color: var(--ink); font-weight: 600; }
