@import url("design-tokens.css");

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
svg { display: block; fill: currentColor; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .23em; }
a:hover { color: var(--blue-700); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
::selection { background: var(--blue-100); color: var(--blue-950); }
.container { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 5000; top: -8rem; left: 1rem; padding: .8rem 1rem; background: var(--blue-950); color: var(--white); font-weight: 700; }
.skip-link:focus { top: 1rem; }

h1, h2, h3, h4 { margin: 0; color: var(--ink); font-family: var(--font-sans); font-weight: 600; line-height: 1.08; letter-spacing: var(--tracking-tight); text-wrap: balance; }
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
p { margin: 0 0 1.25rem; }
address { font-style: normal; }
.section { padding-block: var(--section); }
.section--compact { padding-block: var(--section-compact); }
.section--paper-soft { background: var(--mineral); }
:where(main section[id], main article[id], main div[id]) { scroll-margin-top: calc(var(--header-height) + 4rem); }

/* Header and hierarchy */
.site-header { position: sticky; top: 0; z-index: 1100; background: rgb(255 255 255 / .97); border-bottom: 1px solid var(--line); }
.site-header.is-scrolled { box-shadow: 0 10px 32px rgb(8 43 69 / .1); }
.nav { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: clamp(1.5rem, 4vw, 4rem); }
.nav__brand { display: inline-flex; align-items: center; flex: 0 1 20rem; min-width: 12rem; min-height: 48px; text-decoration: none; }
.nav__brand > img { width: min(100%, 19rem); max-height: 4.3rem; object-fit: contain; object-position: left center; }
.nav__links { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.7rem); margin: 0; padding: 0; list-style: none; }
.nav__links a { position: relative; display: block; padding: 1rem 0; color: var(--muted); font-size: .76rem; font-weight: 700; line-height: 1.25; letter-spacing: .105em; text-decoration: none; text-transform: uppercase; }
.nav__links a::after { content: ""; position: absolute; right: 0; bottom: .5rem; left: 0; height: 2px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform var(--duration) var(--ease); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links .nav__cta a { padding: .85rem 1rem; border: 1px solid var(--blue-900); background: var(--blue-900); color: var(--white); }
.nav__links .nav__cta a::after { display: none; }
.nav__links .nav__cta a:hover { background: var(--blue-700); border-color: var(--blue-700); color: var(--white); }
.nav__toggle { display: none; min-width: 48px; min-height: 48px; align-items: center; justify-content: center; border: 1px solid var(--line); background: var(--white); color: var(--ink); padding: .8rem; cursor: pointer; }
.nav__toggle svg { width: 20px; height: 20px; }
.site-context { position: relative; z-index: 20; background: var(--white); border-bottom: 1px solid var(--line); }
.site-context__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 4rem; }
.site-context__breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; font-size: var(--text-sm); color: var(--muted); }
.site-context__breadcrumb li + li::before { content: "/"; margin-right: .5rem; color: #91a5ae; }
.site-context__breadcrumb a { text-decoration: none; }
.site-context__tabs { display: flex; gap: .25rem; overflow-x: auto; padding-block: .5rem; scrollbar-width: thin; }
.site-context__tabs a { flex: none; padding: .55rem .85rem; border: 1px solid transparent; font-size: .78rem; font-weight: 700; text-decoration: none; }
.site-context__tabs a[aria-current="page"] { border-color: var(--line); background: var(--mineral); color: var(--ink); }
.section-jumps, .document-nav, .reading-progress, .section-toggle { display: none !important; }

/* Homepage hero */
.hero { position: relative; min-height: clamp(42rem, 76vh, 54rem); display: grid; grid-template-columns: minmax(0, 47%) minmax(0, 53%); overflow: hidden; background: var(--ivory); }
.hero__inner { grid-column: 1; grid-row: 1; z-index: 2; align-self: center; width: min(100%, 45rem); margin-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))); padding: clamp(4rem, 9vw, 8rem) clamp(2rem, 5vw, 6rem) clamp(4rem, 9vw, 8rem) 0; }
.hero__media { grid-column: 2; grid-row: 1; position: relative; min-height: 100%; overflow: hidden; background: var(--blue-100); }
.hero__image { position: absolute; inset: -7% 0; width: 100%; height: 114%; object-fit: cover; transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.02); will-change: transform; }
.hero__image--default { display: none; }
.hero__image--architectural { display: block; }
.hero__eyebrow, .page-intro__eyebrow, .section-head__eyebrow, .service-group__label { margin: 0 0 1.35rem; color: var(--coral); font-size: .73rem; font-weight: 700; letter-spacing: var(--tracking-wide); line-height: 1.3; text-transform: uppercase; }
.hero h1 { max-width: 10.6ch; }
.hero__tagline { max-width: 34rem; margin: 2rem 0 0; color: var(--blue-700); font-size: var(--text-lg); line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.4rem; }
.btn, .button { min-height: 3.5rem; display: inline-flex; align-items: center; justify-content: center; gap: .8rem; padding: .8rem 1.25rem; border: 1px solid var(--blue-900); border-radius: var(--radius); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease); }
.btn img { width: 1.05rem; height: 1.05rem; }
.btn--primary, .button--primary { background: var(--blue-900); color: var(--white); }
.button.button--primary, .button.button--primary:visited, .button.button--primary:hover {
  background-color: var(--blue-950);
  border-color: var(--blue-950);
  color: var(--white);
}
.btn--primary:hover, .button--primary:hover { background: var(--blue-700); border-color: var(--blue-700); color: var(--white); }
.btn--ghost, .button--secondary { background: transparent; color: var(--ink); }
.btn--ghost:hover, .button--secondary:hover { background: var(--white); color: var(--ink); }

/* Editorial sections */
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, .55fr); gap: 3rem; align-items: end; margin-bottom: clamp(2.8rem, 5vw, 5rem); padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.section-head > div { max-width: 52rem; }
.section-head > p { max-width: 40rem; margin: 0; color: var(--muted); }
.section-head__title--default { display: none; }
.section-head__title--architectural { display: block; }
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { min-height: 13rem; padding: clamp(1.75rem, 3.5vw, 3rem); background: var(--mineral); }
.card h3 { max-width: 18ch; margin-bottom: 1rem; font-size: clamp(1.25rem, 1.08rem + .65vw, 1.7rem); }
.card p { max-width: 40ch; margin: 0; color: var(--muted); }
.services-rail__track { display: flex; align-items: center; gap: .8rem; padding-top: 1.7rem; }
.services-rail__track span { height: 1px; flex: 1; background: var(--line); }
.services-rail__track img { width: 1.1rem; filter: brightness(0) saturate(100%) invert(23%) sepia(24%) saturate(1554%) hue-rotate(163deg) brightness(87%); }
.related-links { margin-top: clamp(3rem, 6vw, 6rem); border-top: 1px solid var(--line); }
.related-link { position: relative; display: grid; grid-template-columns: minmax(10rem, .35fr) 1fr; gap: 2rem; align-items: center; min-height: 7rem; padding: 1.5rem 4rem 1.5rem 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.related-link::after { content: ""; position: absolute; right: .2rem; width: 1.35rem; height: 1.35rem; background: url("assets/icons/arrow-right.svg") center / contain no-repeat; }
.related-link span { color: var(--muted); font-size: .74rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.related-link strong { font-size: clamp(1.2rem, 1.05rem + .55vw, 1.55rem); font-weight: 600; letter-spacing: -.025em; }
.related-link:hover { color: var(--coral); }

/* Reviews */
.reviews { background: var(--paper); }
.reviews__summary { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.2rem; color: var(--muted); }
.reviews__score { color: var(--ink); font-size: 1.15rem; font-weight: 700; }
.reviews__stars { color: #b56a24; letter-spacing: .13em; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 3rem; background: var(--line); border: 1px solid var(--line); }
.review-card { min-height: 18rem; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(1.7rem, 3vw, 2.5rem); background: var(--white); color: var(--ink); text-decoration: none; }
.review-card:hover { background: var(--mineral); color: var(--ink); }
.review-card blockquote { margin: 0 0 2rem; font-size: clamp(1.12rem, 1rem + .35vw, 1.35rem); font-weight: 500; line-height: 1.55; letter-spacing: -.018em; }
.review-card__author { margin: 0; color: var(--muted); font-size: var(--text-sm); font-weight: 700; }
.reviews__footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; color: var(--muted); font-size: var(--text-sm); }
.reviews__footer p { margin: 0; }
.reviews__footer a { font-weight: 700; }

/* Photo-backed call to action */
.cta { position: relative; isolation: isolate; min-height: 32rem; display: grid; align-items: center; overflow: hidden; background: var(--blue-900); color: var(--white); }
.cta::after { content: ""; position: absolute; z-index: -1; inset: 0; background: rgb(8 43 69 / .82); }
.cta__media { position: absolute; z-index: -2; inset: -12% 0; overflow: hidden; }
.cta__media img { width: 100%; height: 124%; object-fit: cover; object-position: center 52%; transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.04); will-change: transform; }
.cta .container { position: relative; max-width: 58rem; margin-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))); }
.cta h2 { max-width: 14ch; color: var(--white); }
.cta p { max-width: 38rem; margin: 1.4rem 0 2rem; color: #e4edf0; font-size: var(--text-lg); }
.cta .btn--primary { background: var(--white); border-color: var(--white); color: var(--ink); }
.cta .btn--primary:hover { background: var(--ivory); color: var(--ink); }

/* Internal pages */
.page-intro { position: relative; min-height: clamp(31rem, 60vh, 41rem); display: flex; align-items: center; overflow: hidden; background: var(--ivory); }
.page-intro .container { position: relative; z-index: 2; margin-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))); margin-right: auto; padding-block: clamp(4.5rem, 8vw, 7rem); padding-right: clamp(2rem, 6vw, 7rem); width: min(calc(52% - var(--gutter)), 45rem); animation: intro-copy-reveal .6s var(--ease) both; }
.page-intro h1 { max-width: 12ch; font-size: clamp(2.8rem, 4.6vw, 5.25rem); }
.page-intro__summary { max-width: 35rem; margin: 1.6rem 0 0; color: var(--blue-700); font-size: var(--text-lg); }
.page-intro__eyebrow { display: flex; align-items: center; gap: .8rem; letter-spacing: .11em; }
.page-intro__eyebrow::before { content: ""; width: 2.25rem; height: 1px; background: currentColor; }
.page-intro__media { position: absolute; inset: 0 0 0 auto; width: 48%; overflow: hidden; background: var(--blue-900); animation: intro-media-reveal .8s var(--ease) both; }
.page-intro__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(8 43 69 / .16), transparent 24%); pointer-events: none; }
.page-intro__media img { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.025); will-change: transform; }
.page-intro__media--landlords img { object-position: 51% center; }
.page-intro__media--contract-holders img { object-position: 57% center; }
.page-intro__media--policies img { object-position: 62% center; }
.page-intro__media--dusk img { object-position: 67% center; }
@keyframes intro-copy-reveal { from { opacity: 0; transform: translateY(1rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes intro-media-reveal { from { clip-path: inset(0 0 0 100%); } to { clip-path: inset(0); } }
.prose, .document-content { max-width: var(--reading-measure); }
.prose, .document-content, .panel, .content-section, .notice, .source-document { overflow-wrap: anywhere; }
.prose--wide { max-width: 82rem; }
.prose > * + *, .document-content > * + * { margin-top: 1.2rem; }
.prose h2, .document-content h2 { margin-top: 3.4rem; font-size: clamp(1.65rem, 1.35rem + 1vw, 2.35rem); }
.prose h3, .document-content h3 { margin-top: 2.4rem; font-size: clamp(1.25rem, 1.1rem + .55vw, 1.65rem); }
.prose a, .document-content a { color: var(--blue-700); }
.prose ul, .prose ol, .document-content ul, .document-content ol { padding-left: 1.35rem; }
.prose li + li, .document-content li + li { margin-top: .65rem; }
.panel { padding: clamp(1.6rem, 4vw, 3.2rem); background: var(--white); border: 1px solid var(--line); }
.content-section--surface { padding: clamp(1.7rem, 4vw, 3rem); background: var(--mineral); }
.content-section { padding-block: clamp(2.7rem, 5vw, 4.25rem); border-bottom: 1px solid var(--line); }
.content-section:first-child { padding-top: 0; }
.content-section:last-child { border-bottom: 0; }
.fact-grid, .contact-card-grid, .contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 2rem; background: var(--line); border: 1px solid var(--line); }
.fact-card, .contact-card, .hours-card { padding: clamp(1.6rem, 3vw, 2.6rem); background: var(--white); }
.fact-card h2, .contact-card h2, .hours-card h2 { margin-bottom: 1rem; font-size: var(--text-xl); }
.fact-card p, .contact-card p, .hours-card p { color: var(--muted); }
.contact-card { display: flex; flex-direction: column; justify-content: space-between; gap: 1.6rem; min-height: 13rem; text-decoration: none; }
.contact-card__icon { display: grid; place-items: center; width: clamp(4.5rem, 8vw, 6.5rem); aspect-ratio: 1; color: var(--blue-900); background: var(--mineral); border: 1px solid var(--line); }
.contact-card__icon svg { width: 48%; height: 48%; fill: currentColor; }
.contact-card__copy { display: grid; gap: .45rem; }
.contact-card__copy small { color: var(--muted); font-size: var(--text-sm); line-height: 1.1; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .18em; }
.contact-card__copy strong { color: var(--blue-900); font-size: clamp(1rem, .95rem + .25vw, 1.15rem); line-height: 1.25; overflow-wrap: anywhere; }
.hours-card { background: var(--blue-900); color: #dce8ec; }
.hours-card h2 { color: var(--white); }
.hours-card p { color: #dce8ec; }
.policy-hub { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.policy-hub > * { padding: clamp(1.6rem, 3vw, 2.6rem); background: var(--white); }
.policy-hub h2 { margin-bottom: 1rem; font-size: var(--text-xl); }
.notice, .certificate-status, .example { margin-block: 2rem; padding: 1.5rem 1.7rem; border: 1px solid var(--line); border-top: 3px solid var(--coral); background: var(--mineral); }
.source-document { margin-block: 2rem; padding: clamp(1.7rem, 4vw, 3.5rem); border: 1px solid var(--line); background: var(--white); }
.notice p:last-child, .certificate-status p:last-child, .example p:last-child, .source-document p:last-child { margin-bottom: 0; }
.source-document__organisation, .source-document__version, .document-meta { color: var(--muted); font-size: var(--text-sm); }
.document-layout { display: block; }
.document-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-block: 2rem; }
.clause-list { counter-reset: clauses; }
.clause { position: relative; padding: 2rem 0 2rem clamp(3.3rem, 6vw, 5rem); border-top: 1px solid var(--line); }
.clause__ref { position: absolute; left: 0; color: var(--coral); font-weight: 700; }
.feature-list { margin: 1.4rem 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding: .75rem 0 .75rem 1.6rem; border-top: 1px solid var(--line); }
.feature-list li::before { content: ""; position: absolute; top: 1.35rem; left: 0; width: .45rem; height: .45rem; background: var(--coral); }
.service-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 3rem; background: var(--line); border: 1px solid var(--line); }
.service-group { padding: clamp(1.8rem, 4vw, 3.2rem); background: var(--white); }
.service-group h3 { font-size: var(--text-xl); }
.landlord-overview { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; border: 1px solid var(--line); list-style: none; counter-reset: landlord-stage; }
.landlord-overview li { counter-increment: landlord-stage; min-height: 9rem; padding: 1.5rem; border-right: 1px solid var(--line); background: var(--mineral); font-weight: 600; }
.landlord-overview li:last-child { border-right: 0; }
.landlord-overview li::before { content: "0" counter(landlord-stage); display: block; margin-bottom: 1.5rem; color: var(--coral); font-size: .74rem; letter-spacing: .1em; }
.landlord-conversion { margin-top: 2rem; }
.landlord-action { display: grid; grid-template-columns: minmax(8rem, .25fr) 1fr; gap: 2rem; padding: 1.8rem 4rem 1.8rem 1.8rem; background: var(--blue-900) url("assets/icons/arrow-right.svg") calc(100% - 1.5rem) center / 1.35rem no-repeat; color: var(--white); text-decoration: none; }
.landlord-action:hover { background-color: var(--blue-700); color: var(--white); }
.landlord-action span { color: #cbdde4; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.landlord-action strong { font-size: 1.25rem; font-weight: 600; }
.landlord-trust { display: none; }
.process { counter-reset: process; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-step { counter-increment: process; padding: 2rem; background: var(--white); }
.process-step__number { color: var(--coral); font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.process-step h3 { margin: .75rem 0; }

/* Tables */
.table-wrap, .responsive-table { width: 100%; overflow-x: auto; margin-block: 2rem; border: 1px solid var(--line); background: var(--white); }
.table-wrap.pricing-table { min-width: 0; max-width: 100%; }
table, .pricing-table { width: 100%; min-width: 44rem; border-collapse: collapse; }
th, td { padding: 1rem 1.15rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--blue-900); color: var(--white); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
tbody tr:nth-child(even) { background: var(--mineral); }
tr:last-child td { border-bottom: 0; }
.pricing-notes { margin-top: 2rem; }

/* Footer */
.site-footer { padding-top: clamp(4rem, 8vw, 7rem); background: var(--blue-950); color: #dce8ec; }
.site-footer h2 { margin-bottom: 1.4rem; color: var(--white); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer a { color: inherit; }
.site-footer a:hover { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: .9fr .9fr 1.5fr; gap: clamp(2.5rem, 6vw, 7rem); }
.footer-contact p { display: flex; align-items: center; gap: .75rem; }
.footer-contact svg { width: 1rem; height: 1rem; color: #abc2cc; }
.footer-links ul { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: .65rem; }
.footer-accred { display: grid; grid-template-columns: repeat(2, minmax(7rem, 1fr)); gap: 1rem; }
.footer-accred a { min-height: 7.2rem; display: flex; align-items: center; justify-content: center; padding: 1rem; border: 1px solid rgb(255 255 255 / .2); background: var(--blue-900); }
.footer-accred img { width: 100%; max-width: 9rem; max-height: 4.8rem; object-fit: contain; }
.footer-accred img.is-nrla { max-width: 10rem; }
.footer-accred img.is-prs { max-width: 10rem; }
.footer-accred img.is-wide { max-width: 13rem; }
.footer-bottom { margin-top: clamp(3rem, 6vw, 5rem); padding-block: 1.5rem; border-top: 1px solid var(--line-dark); color: #a9bfca; font-size: var(--text-sm); }
.footer-bottom p { margin: 0; }

@media (max-width: 1060px) {
  .nav { min-height: var(--header-height); }
  .nav__brand { flex-basis: 15rem; min-width: 10rem; }
  .js .nav__toggle--open { display: inline-flex; }
  .nav__toggle--close { display: none; }
  .js .nav__links { position: fixed; top: var(--header-height); right: 0; left: 0; z-index: 1090; display: none; max-height: calc(100dvh - var(--header-height)); overflow-y: auto; padding: .75rem var(--gutter) 1.5rem; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 18px 35px rgb(8 43 69 / .12); }
  .js .is-menu-open .nav__links { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .js .is-menu-open .nav__toggle--open { display: none; }
  .js .is-menu-open .nav__toggle--close { display: inline-flex; }
  .nav__links a { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .site-context__inner { align-items: flex-start; flex-direction: column; gap: .2rem; padding-block: .7rem; }
  .site-context__tabs { width: 100%; }
  .hero { min-height: 44rem; grid-template-columns: 1fr 1fr; }
  .hero__inner { margin-left: var(--gutter); padding-right: 2.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-accred-col { grid-column: 1 / -1; }
  .footer-accred { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .hero { min-height: auto; display: flex; flex-direction: column-reverse; }
  .hero__media { min-height: 22rem; }
  .hero__image { inset: 0; height: 100%; transform: none !important; }
  .hero__inner { width: auto; margin: 0; padding: 4rem var(--gutter); }
  .hero h1 { max-width: 12ch; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .section-head { grid-template-columns: 1fr; gap: 1.2rem; }
  .grid--3, .reviews__grid, .service-groups, .policy-hub, .fact-grid, .contact-card-grid, .contact-grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .related-link { grid-template-columns: 1fr; gap: .3rem; min-height: 6.5rem; }
  .reviews__grid { background: transparent; border: 0; gap: 1rem; }
  .review-card { min-height: 14rem; border: 1px solid var(--line); }
  .reviews__footer { align-items: flex-start; flex-direction: column; }
  .cta { min-height: 28rem; }
  .cta__media { inset: 0; }
  .cta__media img { height: 100%; transform: none !important; }
  .cta .container { margin-inline: var(--gutter); }
  .page-intro { min-height: 0; display: flex; flex-direction: column; align-items: stretch; }
  .page-intro .container { order: 1; width: auto; margin: 0; padding: 3.8rem var(--gutter) 4.2rem; }
  .page-intro__media { position: relative; order: 2; inset: auto; width: 100%; height: clamp(17rem, 60vw, 24rem); }
  .page-intro__media img { inset: 0; height: 100%; transform: none !important; }
  .page-intro__media::after { background: linear-gradient(180deg, rgb(8 43 69 / .08), transparent 35%); }
  .landlord-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .landlord-overview li { border-bottom: 1px solid var(--line); }
  .landlord-overview li:nth-child(2) { border-right: 0; }
  .landlord-overview li:nth-child(n+3) { border-bottom: 0; }
  .landlord-action { grid-template-columns: 1fr; gap: .4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-accred-col { grid-column: auto; }
  .footer-accred { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 430px) {
  .nav__brand { flex-basis: 13rem; }
  .nav__brand > img { max-height: 3.6rem; }
  .hero__media { min-height: 18rem; }
  .landlord-overview { grid-template-columns: 1fr; }
  .landlord-overview li { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .landlord-overview li:last-child { border-bottom: 0 !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-parallax] { transform: none !important; }
}

@media print {
  .site-header, .site-context, .site-footer, .document-actions, .cta { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .page-intro { min-height: 0; display: block; padding: 1.5rem 0; background: #fff; }
  .page-intro .container { width: auto; margin: 0; padding: 0; }
  .page-intro__media { display: none; }
  .section, .section--compact { padding: 1.5rem 0; }
  .document-content, .prose { max-width: none; }
  .content-section { display: block !important; break-inside: avoid; }
}
