:root {
  --ink: #241c2b;
  --muted: #6d6471;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: #e8e1e7;
  --plum: #5a186f;
  --plum-dark: #391046;
  --coral: #ff6f4c;
  --pink: #f32772;
  --cyan: #05b8d7;
  --yellow: #ffd166;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 14px; background: var(--ink); color: white; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 249, .96);
  border-bottom: 1px solid rgba(90, 24, 111, .12);
  backdrop-filter: blur(12px);
}
.nav-row { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 176px; }
.brand img { display: none; }
.brand::before { content: ""; width: 42px; height: 42px; background: url('/assets/brindle-mascot.png') no-repeat center 28% / 48px auto; }
.brand::after { content: "Brindle"; color: var(--plum-dark); font: 700 1.45rem/1 Georgia, 'Times New Roman', serif; }
.brand-mark { width: 12px; height: 12px; border-radius: 50%; background: var(--coral); box-shadow: 16px 0 0 var(--pink), 32px 0 0 var(--cyan); margin-right: 30px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: .92rem; }
.nav-links a { padding: 8px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--plum); border-color: var(--coral); }
.nav-cta { padding: 10px 16px !important; color: white !important; background: var(--plum); border: 0 !important; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: white; font-size: 1.35rem; }

.hero {
  min-height: 610px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  background: #ce5148 url('/assets/brindle-mascot.png') no-repeat calc(50% + 420px) calc(100% + 120px) / 720px auto;
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(57,16,70,.94) 0 43%, rgba(57,16,70,.55) 62%, rgba(57,16,70,0) 80%); }
.hero-copy { position: relative; z-index: 1; width: min(650px, 56%); padding: 82px 0 106px; }
.eyebrow { margin: 0 0 18px; font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 4px; margin: 0 10px 2px 0; background: var(--coral); }
h1, h2, h3 { margin-top: 0; font-family: Georgia, 'Times New Roman', serif; line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(3rem, 6vw, 5.7rem); margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
h3 { font-size: 1.45rem; }
.hero p { max-width: 600px; margin: 0 0 30px; color: #f9eefa; font-size: 1.12rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 19px; border: 2px solid var(--ink); background: var(--ink); color: white; font-weight: 800; }
.button:hover { transform: translateY(-2px); box-shadow: 5px 5px 0 var(--coral); }
.button-light { border-color: white; background: white; color: var(--plum-dark); }
.button-outline { border-color: rgba(255,255,255,.55); background: transparent; color: white; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--plum); font-weight: 800; }
.text-link::after { content: "\2192"; font-size: 1.15em; }

.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.section-heading p { max-width: 590px; margin: 0; color: var(--muted); }
.kicker { margin: 0 0 8px; color: var(--pink); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.latest { background: white; border-bottom: 1px solid var(--line); }
.article-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border: 1px solid var(--line); }
.article-card { min-width: 0; padding: 24px 20px 22px; border-right: 1px solid var(--line); background: white; }
.article-card:last-child { border-right: 0; }
.article-card:hover { background: #fff7f3; }
.article-card span { display: block; margin-bottom: 28px; color: var(--pink); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.article-card h3 { margin-bottom: 12px; font-size: 1.12rem; }
.article-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card { position: relative; overflow: hidden; background: white; border: 1px solid var(--line); }
.product-card:nth-child(1) { border-top: 7px solid var(--plum); }
.product-card:nth-child(2) { border-top: 7px solid var(--cyan); }
.product-card:nth-child(3) { border-top: 7px solid var(--pink); }
.product-visual { aspect-ratio: 16 / 9; overflow: hidden; background: #f5f2f6; }
.product-visual img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 26px; }
.product-body h3 { margin-bottom: 8px; font-size: 1.65rem; }
.product-body p { color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 22px; }
.tag { padding: 5px 9px; border: 1px solid var(--line); background: var(--paper); color: var(--muted); font-size: .76rem; font-weight: 700; }

.manifesto { position: relative; overflow: hidden; background: var(--plum-dark); color: white; }
.manifesto-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.manifesto-image { position: relative; min-height: 460px; }
.manifesto-image img { position: absolute; right: 0; bottom: -88px; width: min(520px, 100%); }
.manifesto-copy p { color: #e9ddea; }
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 30px; background: rgba(255,255,255,.18); }
.principle { padding: 18px; background: var(--plum-dark); }
.principle strong { display: block; color: var(--yellow); }

.page-hero { padding: 82px 0 70px; color: white; background: var(--plum-dark); }
.page-hero.product-quickpop { background: var(--plum-dark); }
.page-hero.product-booking { background: #087a91; }
.page-hero.product-sleek { background: #a91854; }
.page-hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.page-hero h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
.page-hero p { max-width: 620px; color: rgba(255,255,255,.86); font-size: 1.1rem; }
.page-hero img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border: 10px solid rgba(255,255,255,.12); box-shadow: 14px 14px 0 rgba(0,0,0,.16); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature { min-height: 190px; padding: 28px; background: white; }
.feature b { display: block; width: 34px; height: 34px; margin-bottom: 34px; color: white; background: var(--plum); text-align: center; line-height: 34px; }
.feature h3 { margin-bottom: 8px; font-size: 1.2rem; }
.feature p { margin: 0; color: var(--muted); }
.image-copy { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.image-copy.reverse { grid-template-columns: .9fr 1.1fr; }
.image-copy img { width: 100%; border: 1px solid var(--line); box-shadow: 12px 12px 0 #efe9f0; }
.check-list { list-style: none; margin: 24px 0 0; padding: 0; }
.check-list li { position: relative; padding: 9px 0 9px 32px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--pink); font-weight: 900; }

.library { min-height: 780px; }
.library-intro { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; margin-bottom: 54px; }
.library-intro p { color: var(--muted); }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.library-card { display: flex; min-height: 270px; flex-direction: column; padding: 26px; border: 1px solid var(--line); background: white; }
.library-card:nth-child(3n+1) { border-top: 6px solid var(--coral); }
.library-card:nth-child(3n+2) { border-top: 6px solid var(--cyan); }
.library-card:nth-child(3n+3) { border-top: 6px solid var(--plum); }
.library-card .meta { margin-bottom: 40px; color: var(--pink); font-size: .75rem; font-weight: 900; text-transform: uppercase; }
.library-card h2 { font-size: 1.45rem; }
.library-card p { color: var(--muted); }
.library-card .text-link { margin-top: auto; }
[data-na-published-list]:empty { display: none; }
[data-na-published-list]:not(:empty) { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 22px; }

.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 260px; gap: 70px; align-items: start; }
.article-head { padding: 74px 0 48px; border-bottom: 1px solid var(--line); }
.article-head h1 { max-width: 960px; font-size: clamp(2.6rem, 5vw, 4.8rem); }
.article-head .dek { max-width: 720px; color: var(--muted); font-size: 1.16rem; }
.article-head .meta { color: var(--pink); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.article-body { padding: 60px 0 90px; }
.prose h2 { margin: 54px 0 16px; font-size: 2rem; }
.prose h3 { margin: 34px 0 12px; }
.prose p, .prose li { color: #4f4652; font-size: 1.04rem; }
.prose img { margin: 34px 0; border: 1px solid var(--line); }
.prose blockquote { margin: 34px 0; padding: 24px 28px; border-left: 6px solid var(--coral); background: white; font: 1.25rem/1.5 Georgia, serif; }
.toc { position: sticky; top: 108px; padding: 22px; border-left: 4px solid var(--cyan); background: white; }
.toc strong { display: block; margin-bottom: 12px; font-size: .78rem; text-transform: uppercase; }
.toc a { display: block; padding: 7px 0; color: var(--muted); font-size: .88rem; }
.toc a:hover { color: var(--plum); }

.about-band { padding: 90px 0; background: white; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 66px; align-items: center; }
.about-grid img { width: 100%; min-height: 300px; object-fit: cover; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.value { padding: 18px; border: 1px solid var(--line); }
.value strong { display: block; color: var(--plum); }

.cta-band { padding: 62px 0; color: white; background: var(--coral); }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-row h2 { max-width: 760px; margin: 0; }
.site-footer { padding: 48px 0 30px; color: #d9cddd; background: #211527; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 56px; }
.site-footer h3 { color: white; font-size: 1rem; font-family: Arial, sans-serif; }
.site-footer a { display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--coral); }
.footer-note { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #9f92a4; font-size: .82rem; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 76px; padding: 18px; background: white; border: 1px solid var(--line); box-shadow: 8px 8px 0 rgba(57,16,70,.1); }
  .nav-links.open { display: grid; gap: 8px; }
  .nav-links a { padding: 10px; }
  .hero { min-height: 560px; background-position: calc(50% + 330px) calc(100% + 60px); background-size: 620px auto; }
  .hero-copy { width: 66%; }
  .article-strip { grid-template-columns: repeat(2, 1fr); }
  .article-card { border-bottom: 1px solid var(--line); }
  .article-card:nth-child(2n) { border-right: 0; }
  .article-card:last-child { grid-column: 1 / -1; }
  .product-grid, .article-grid, [data-na-published-list]:not(:empty) { grid-template-columns: repeat(2, 1fr); }
  .manifesto-grid, .about-grid, .image-copy, .image-copy.reverse, .page-hero .wrap, .library-intro { grid-template-columns: 1fr; }
  .manifesto-image { min-height: 300px; }
  .page-hero img { max-width: 720px; }
  .article-layout { grid-template-columns: 1fr; }
  .toc { position: static; order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .nav-row { min-height: 66px; }
  .brand { min-width: 0; }
  .brand::before { width: 38px; height: 38px; background-size: 43px auto; }
  .brand::after { font-size: 1.25rem; }
  .nav-links { top: 66px; left: 14px; right: 14px; }
  .hero { min-height: 650px; align-items: start; background-position: calc(50% + 85px) calc(100% + 80px); background-size: 500px auto; }
  .hero::before { background: linear-gradient(180deg, rgba(57,16,70,.97) 0 54%, rgba(57,16,70,.58) 75%, rgba(57,16,70,.05) 100%); }
  .hero-copy { width: 100%; padding: 64px 0 92px; }
  h1 { font-size: 3rem; }
  .hero p { font-size: 1rem; }
  .button-row, .button { width: 100%; }
  .section { padding: 64px 0; }
  .section-tight { padding: 28px 0 56px; }
  .section-heading, .cta-row { align-items: flex-start; flex-direction: column; }
  .article-strip, .product-grid, .article-grid, [data-na-published-list]:not(:empty), .feature-grid, .values, .footer-grid, .principles { grid-template-columns: 1fr; }
  .article-card, .article-card:nth-child(2n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .article-card:last-child { grid-column: auto; border-bottom: 0; }
  .page-hero { padding: 44px 0 28px; }
  .page-hero .wrap { gap: 20px; }
  .page-hero h1 { font-size: 2.75rem; }
  .page-hero img { aspect-ratio: 16 / 9; }
  .page-hero + .section { padding-top: 28px; }
  .library-card { min-height: 230px; }
  .manifesto-grid { gap: 20px; }
  .manifesto-image { min-height: 260px; }
  .manifesto-image img { bottom: -65px; }
  .article-head { padding: 52px 0 38px; }
  .article-body { padding-top: 42px; }
  .prose h2 { font-size: 1.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
