:root {
  --ink: #0d1612;
  --forest: #10241c;
  --forest-2: #18382a;
  --gold: #ffca28;
  --gold-2: #eeb510;
  --cream: #f6f2e9;
  --paper: #fff;
  --muted: #65726b;
  --line: #d9ddd8;
  --shadow: 0 18px 48px rgba(7, 19, 14, .16);
  --radius: 18px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100vw;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font: 17px/1.65 Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: #235a42; text-underline-offset: .18em; }
a:hover { color: #0f3023; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.affiliate-strip {
  padding: 8px 20px;
  color: #e8eee9;
  background: #07110d;
  text-align: center;
  font-size: 13px;
}
.affiliate-strip a { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: rgba(10, 18, 15, .97);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .05em;
  white-space: nowrap;
}
.brand img { width: 58px; height: 58px; object-fit: contain; }
.nav-toggle { display: none; }
.mobile-menu { display: none; }
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.main-nav a {
  padding: 12px 11px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  border-radius: 999px;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--gold);
}
.main-nav .nav-hub { color: var(--gold); }
.main-nav .nav-cta {
  margin-left: 6px;
  color: var(--ink);
  background: var(--gold);
}

main { min-height: 60vh; }
main > section, main > article {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

h1, h2, h3 {
  margin: 0 0 .55em;
  line-height: 1.08;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6vw, 5.7rem); }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.7rem); }
h3 { font-size: 1.28rem; }
p, ul, ol { margin: 0 0 1.25em; }
.eyebrow {
  margin-bottom: 12px;
  color: #b98200;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: #435149; }
.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}
.button:hover { color: var(--ink); background: #ffdb63; border-color: #ffdb63; }
.button.ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.65); }
.button.ghost:hover { color: var(--ink); background: #fff; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

.home-hero {
  width: 100%;
  max-width: none;
  min-height: 680px;
  margin: 0;
  color: #fff;
  background:
    linear-gradient(90deg, #07110d 0%, #07110d 46%, rgba(7,17,13,.9) 57%, rgba(8,18,14,.36) 100%),
    url("/brand/xl-bully/uk-rules-hero-v2.png") center right / cover no-repeat;
  display: grid;
  align-items: end;
}
.home-hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: auto;
  padding: 130px 0 96px;
}
.home-hero-copy { max-width: 680px; }
.home-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.7vw, 6.5rem);
  text-transform: uppercase;
  letter-spacing: -.045em;
}
.home-hero h1 span { color: var(--gold); display: block; }
.home-hero .lead { max-width: 620px; color: #e7ece8; }
.hero-mark {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
  object-fit: contain;
}
.trust-strip {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 22px max(18px, calc((100% - var(--max))/2));
  color: #fff;
  background: #111d18;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.trust-item { padding: 12px 24px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; color: var(--gold); text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.trust-item span { font-size: 14px; color: #d7dfda; }

.section-shell { padding-block: 74px; }
.section-heading {
  margin-bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.section-heading h2 { margin: 0; text-transform: uppercase; }

.xl-feature {
  position: relative;
  min-height: 420px;
  margin-top: 70px;
  padding: clamp(32px, 6vw, 70px);
  color: #fff;
  overflow: hidden;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #07110d 0%, #07110d 42%, rgba(7,17,13,.94) 55%, rgba(7,17,13,.18) 100%),
    url("/brand/xl-bully/uk-rules-hero-v2.png") center right / cover no-repeat;
  box-shadow: var(--shadow);
  display: grid;
  align-items: center;
}
.xl-feature > div { max-width: 560px; }
.xl-feature h2 { font-size: clamp(2.2rem, 4vw, 4rem); text-transform: uppercase; }
.xl-feature .lead { color: #e4ebe6; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(13,22,18,.07);
}
.card > a {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce3de;
}
.card > img, .card > a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-content { padding: 22px; }
.card h2 { font-size: 1.35rem; }
.card h2 a { color: var(--ink); text-decoration: none; }
.card .eyebrow { font-size: 11px; }
.read { font-weight: 800; }

.book-band {
  margin-block: 74px;
  padding: clamp(30px, 5vw, 58px);
  color: #fff;
  background: linear-gradient(135deg, var(--forest), #09120f);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 34px;
}
.book-band img { width: 150px; filter: drop-shadow(0 10px 20px rgba(0,0,0,.3)); }
.book-band .eyebrow { color: var(--gold); }
.book-band p { max-width: 760px; color: #dce5df; }

.intro {
  padding: 76px 0 36px;
  max-width: 900px;
}
.intro h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
.intro-logo { width: 100px; margin-bottom: 24px; }

.authority-hero {
  width: 100%;
  max-width: none;
  min-height: 590px;
  margin: 0;
  color: #fff;
  background: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .92fr);
}
.authority-copy {
  padding: clamp(55px, 7vw, 110px) max(30px, calc((100vw - var(--max))/2));
  padding-right: clamp(30px, 5vw, 80px);
  align-self: center;
}
.authority-copy .eyebrow { color: var(--gold); }
.authority-copy h1 { text-transform: uppercase; font-size: clamp(3rem, 6vw, 6rem); }
.authority-copy .lead { color: #dbe3de; }
.authority-visual { min-height: 590px; overflow: hidden; background: #101a15; }
.authority-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 100% center; transform: scale(1.35); transform-origin: right center; }

.hub-intro {
  margin-top: -26px;
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.answer-box {
  margin: 28px 0;
  padding: 24px 26px;
  background: #fff7d8;
  border-left: 6px solid var(--gold);
  border-radius: 10px;
  font-size: 1.08rem;
}
.answer-box strong { display: block; margin-bottom: 5px; text-transform: uppercase; font-size: 12px; letter-spacing: .1em; }
.updated { color: var(--muted); font-size: 14px; }

.territory-grid, .hub-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.territory-card, .hub-guide-card {
  padding: 28px;
  color: #fff;
  background: linear-gradient(145deg, var(--forest), #0b1712);
  border: 1px solid rgba(255,202,40,.42);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.territory-card:hover, .hub-guide-card:hover { color: #fff; border-color: var(--gold); transform: translateY(-2px); }
.territory-card span, .hub-guide-card span { color: var(--gold); text-transform: uppercase; font-weight: 900; font-size: 12px; letter-spacing: .1em; }
.territory-card h3, .hub-guide-card h3 { margin-top: 10px; }
.territory-card p, .hub-guide-card p { color: #d8e0db; }

.authority-layout {
  padding: 64px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(260px, 1fr);
  align-items: start;
  gap: 48px;
}
.prose {
  min-width: 0;
  padding: clamp(26px, 5vw, 58px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.prose h1 { font-size: clamp(2.35rem, 4.4vw, 4.15rem); }
.prose h2 { margin-top: 1.65em; font-size: clamp(1.55rem, 3vw, 2.25rem); }
.prose h3 { margin-top: 1.5em; }
.prose img { border-radius: 12px; }
.prose figure { margin: 30px 0; }
.prose figcaption { margin-top: 8px; color: var(--muted); font-size: 13px; text-align: center; }
.prose li { margin-bottom: .55em; }
.prose a { font-weight: 700; }
.article-hero {
  width: calc(100% + clamp(52px, 10vw, 116px));
  max-width: none;
  margin: calc(-1 * clamp(26px, 5vw, 58px)) calc(-1 * clamp(26px, 5vw, 58px)) 34px;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0 !important;
}
.article-hero-inline {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 26px 0 32px;
  border-radius: 12px !important;
}
.meta {
  padding-bottom: 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.article-purpose, .hub-context, .legal-alert, .source-review {
  margin: 25px 0;
  padding: 22px 24px;
  border-radius: 10px;
}
.article-purpose { background: #f1f6f2; border-left: 5px solid var(--forest-2); }
.hub-context { color: #fff; background: var(--forest); border: 1px solid var(--gold); }
.hub-context a { color: var(--gold); }
.legal-alert { background: #fff0ed; border-left: 5px solid #bd3a2b; }
.source-review { color: #33453b; background: #edf4ef; border-left: 5px solid #4f775f; }
.citation-list li { margin-bottom: 10px; }
.table-wrap { overflow-x: auto; margin: 28px 0; }
table { width: 100%; min-width: 650px; border-collapse: collapse; }
th, td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--forest); color: #fff; }

.breadcrumb {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}
.breadcrumb a { font-weight: 700; }
.toc {
  position: sticky;
  top: 110px;
  padding: 25px;
  color: #fff;
  background: var(--forest);
  border-radius: 14px;
}
.toc h2 { font-size: 1.2rem; }
.toc a { display: block; padding: 7px 0; color: #e2eae5; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.1); }
.toc a.button {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  margin-top: 20px;
  padding: 12px 22px;
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
  text-align: center;
}

.faq { margin-top: 48px; }
.faq details {
  margin-bottom: 10px;
  padding: 17px 20px;
  background: #f4f6f4;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.faq summary { cursor: pointer; font-weight: 800; }
.faq details p { margin: 12px 0 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.product-card > a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0b1712;
}
.product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-copy { padding: 22px; }
.product-copy h3 { font-size: 1.25rem; }
.rating-note, .disclosure-line { color: var(--muted); font-size: 12px; }
.personal-note {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--yellow);
  border-radius: 0 16px 16px 0;
  background: #f7f1df;
}
.personal-note strong { display: block; margin-bottom: 8px; color: var(--green); }
.personal-note p { margin: 0; }
.decision-table-wrap { margin: 24px 0 34px; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
.decision-table { width: 100%; min-width: 560px; border-collapse: collapse; background: #fff; }
.decision-table th, .decision-table td { padding: 15px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.decision-table th { background: var(--green); color: #fff; font-size: 14px; letter-spacing: .03em; }
.decision-table tr:last-child td { border-bottom: 0; }
.source-note { color: var(--muted); font-size: 14px; }
.privacy-settings-link {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
}
.secondary-button { border: 1px solid var(--green); background: transparent; color: var(--green); }
.product-card .button { width: 100%; }

.author-box {
  margin-top: 44px;
  padding: 24px;
  background: #f2f5f2;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: center;
}
.author-box img { width: 90px; height: 90px; object-fit: cover; border-radius: 50%; }
.author-box p { margin-bottom: 6px; }

.category-grid, .download-grid {
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.category-grid a, .download-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(13,22,18,.07);
}
.category-grid a { color: var(--ink); text-decoration: none; }
.category-grid span, .download-grid span { color: #9b6c00; text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.category-grid h2, .download-grid h2 { margin-top: 10px; font-size: 1.45rem; }
.download-grid article {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.download-card-preview {
  display: grid;
  min-height: 330px;
  padding: 24px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #10241c, #07110d);
}
.download-card-preview img {
  width: min(100%, 245px);
  height: auto;
  max-height: 330px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
}
.download-card-copy {
  padding: 28px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}
.download-card-copy .button { margin-top: auto; }

.download-detail {
  margin-block: 64px 80px;
  padding: clamp(24px, 4vw, 52px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.download-detail-hero {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}
.download-detail-hero > * { min-width: 0; }
.download-preview {
  margin: 0;
  padding: clamp(18px, 3vw, 30px);
  text-align: center;
  background: linear-gradient(145deg, #10241c, #07110d);
  border-radius: 16px;
}
.download-preview img {
  width: 100%;
  max-width: 440px;
  height: auto;
  margin: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(0,0,0,.38);
}
.download-preview figcaption { margin-top: 14px; color: #dfe7e2; font-size: 13px; }
.download-detail-copy h1 { font-size: clamp(2.5rem, 5vw, 4.7rem); }
.download-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.download-actions span { color: var(--muted); font-size: 14px; font-weight: 700; }
.download-explainer { width: 100%; margin-top: 68px; padding-top: 56px; border-top: 1px solid var(--line); }
.download-five-w {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.download-five-w article {
  min-width: 0;
  padding: 24px;
  background: #f3f6f3;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.download-five-w article:last-child { grid-column: 1 / -1; }
.download-five-w span {
  color: #9b6c00;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.download-five-w h3 { margin-top: 7px; }
.download-five-w p { margin-bottom: 0; }
.download-use-grid {
  width: 100%;
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 6vw, 70px);
}
.download-use-grid h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.download-use-grid li { margin-bottom: 12px; }
.tick-list { padding: 0; list-style: none; }
.tick-list li { position: relative; padding-left: 30px; }
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #176b49;
  font-weight: 900;
}
.download-safety { margin-top: 48px; }
.download-final-cta {
  width: 100%;
  margin-top: 38px;
  padding: clamp(26px, 4vw, 44px);
  color: #fff;
  background: var(--forest);
  border-radius: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  align-items: center;
  gap: 32px;
}
.download-final-cta .eyebrow { color: var(--gold); }
.download-final-cta p { color: #dfe7e2; }
.download-final-cta > div:last-child { display: grid; justify-items: start; gap: 12px; }
.download-final-cta > div:last-child p { margin: 0; }
.download-final-cta a:not(.button) { color: var(--gold); }

.policy-layout { grid-template-columns: minmax(0, 860px); justify-content: center; }
.policy-page h1 { font-size: clamp(2.4rem, 4vw, 3.8rem); }

.about {
  margin-block: 80px;
  padding: clamp(28px, 5vw, 65px);
  background: #fff;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(230px, 380px) 1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 70px);
  box-shadow: var(--shadow);
}
.about > img {
  width: 100%;
  height: auto;
  align-self: start;
  object-fit: contain;
  border-radius: 16px;
}

.site-footer {
  padding: 60px max(18px, calc((100% - var(--max))/2)) 30px;
  color: #dce5df;
  background: #08120e;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand { display: flex; gap: 18px; align-items: center; }
.footer-brand img { width: 82px; height: 82px; object-fit: contain; }
.footer-brand strong { color: #fff; text-transform: uppercase; letter-spacing: .07em; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; }
.footer-links a { color: #dce5df; }
.copyright { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.copyright strong { color: var(--gold); }

@media (max-width: 980px) {
  .brand span { display: none; }
  .main-nav a { padding-inline: 8px; font-size: 11px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .category-grid, .download-grid, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .authority-hero { grid-template-columns: 1fr; }
  .authority-copy { padding-inline: 30px; }
  .authority-visual { min-height: 380px; }
  .authority-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .affiliate-strip { padding: 7px 12px; font-size: 11px; line-height: 1.35; overflow-wrap: anywhere; }
  .header-inner { width: calc(100% - 24px); max-width: calc(100vw - 24px); min-height: 68px; gap: 10px; }
  .brand { min-width: 0; }
  .brand img { width: 49px; height: 49px; }
  .main-nav { display: none; }
  .mobile-menu { display: block; flex: 0 0 auto; margin-left: auto; position: relative; }
  .mobile-menu summary {
    width: 50px;
    height: 50px;
    overflow: hidden;
    color: transparent;
    cursor: pointer;
    list-style: none;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: relative;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary::before, .mobile-menu summary::after {
    content: "";
    position: absolute;
    left: 13px;
    width: 22px;
    height: 2px;
    background: var(--gold);
  }
  .mobile-menu summary::before { top: 17px; box-shadow: 0 7px 0 var(--gold); }
  .mobile-menu summary::after { top: 31px; }
  .mobile-menu[open] summary::before { top: 23px; transform: rotate(45deg); box-shadow: none; }
  .mobile-menu[open] summary::after { top: 23px; transform: rotate(-45deg); }
  .mobile-menu > div {
    position: absolute;
    top: 60px;
    right: 0;
    width: min(290px, calc(100vw - 24px));
    padding: 12px;
    background: #0b1712;
    border: 1px solid rgba(255,202,40,.5);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }
  .mobile-menu a {
    display: block;
    padding: 12px 14px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .mobile-menu a:last-child { border: 0; }
  .home-hero {
    min-height: 650px;
    background:
      linear-gradient(180deg, rgba(5,14,10,.91) 0%, rgba(5,14,10,.94) 64%, #05100c 100%),
      url("/brand/xl-bully/uk-rules-hero-v2.png") 100% center / cover no-repeat;
  }
  .home-hero-inner { width: calc(100% - 30px); padding: 70px 0 54px; align-self: end; }
  .home-hero h1 { font-size: clamp(2.65rem, 14vw, 4.5rem); }
  .hero-mark { width: 74px; height: 74px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { padding: 10px 4px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .section-shell { padding-block: 52px; }
  .section-heading { align-items: start; flex-direction: column; }
  .xl-feature {
    width: calc(100% - 24px);
    min-height: 550px;
    margin-top: 48px;
    padding: 28px;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(8,18,14,.2), rgba(8,18,14,.97) 62%),
      url("/brand/xl-bully/uk-rules-hero-v2.png") 68% center / cover no-repeat;
  }
  .card-grid, .category-grid, .download-grid, .product-grid, .territory-grid, .hub-card-grid { grid-template-columns: 1fr; }
  .book-band { grid-template-columns: 1fr; margin-block: 52px; }
  .book-band img { width: 110px; }
  .authority-hero { min-height: 0; }
  .authority-copy { padding: 50px 20px 38px; }
  .authority-copy h1 { font-size: clamp(2.7rem, 13vw, 4.7rem); }
  .authority-visual { min-height: 310px; }
  .authority-visual img { object-position: 88% center; }
  .hub-intro { width: calc(100% - 24px); }
  .authority-layout { width: calc(100% - 24px); padding-top: 38px; gap: 24px; }
  .prose { padding: 24px 20px; border-radius: 12px; }
  .article-hero { width: calc(100% + 40px); margin: -24px -20px 26px; }
  .author-box { grid-template-columns: 70px 1fr; padding: 18px; }
  .author-box img { width: 70px; height: 70px; }
  .about { grid-template-columns: 1fr; margin-block: 50px; }
  .download-detail { width: calc(100% - 24px); margin-block: 38px 54px; padding: 22px 18px; }
  .download-detail-hero, .download-use-grid, .download-final-cta { grid-template-columns: minmax(0, 1fr); }
  .download-preview { min-width: 0; padding: 14px; }
  .download-detail-copy h1 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
  .download-five-w { grid-template-columns: 1fr; }
  .download-five-w article:last-child { grid-column: auto; }
  .download-card-preview { min-height: 280px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

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