:root {
  color-scheme: light;
  --bg: #f6f5ef;
  --ink: #17201d;
  --muted: #5c665f;
  --panel: #ffffff;
  --panel-strong: #ebeee7;
  --line: rgba(23, 32, 29, 0.14);
  --accent: #0f6b58;
  --accent-2: #c8a24a;
  --dark: #14231f;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(18, 31, 28, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body[data-concept="personal"] {
  --bg: #f7f2ea;
  --ink: #241c18;
  --muted: #75665c;
  --panel: #fffaf3;
  --panel-strong: #eadfce;
  --line: rgba(36, 28, 24, 0.14);
  --accent: #8c4935;
  --accent-2: #2e6a64;
  --dark: #2a211c;
  --shadow: 0 24px 70px rgba(63, 40, 28, 0.16);
}

body[data-concept="search"] {
  --bg: #f3f6f4;
  --ink: #101820;
  --muted: #52606a;
  --panel: #ffffff;
  --panel-strong: #e2ece8;
  --line: rgba(16, 24, 32, 0.14);
  --accent: #2d5dd7;
  --accent-2: #d36b35;
  --dark: #101820;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: color-mix(in srgb, var(--bg) 92%, white);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 6px;
  background: var(--dark);
  color: white;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  max-width: 34ch;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.header-cta,
.primary-action,
.secondary-action,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 750;
}

.header-cta,
.primary-action,
.contact-form button {
  padding: 0 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
}

.secondary-action {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.concept-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 36px clamp(18px, 4vw, 56px) 18px;
}

.concept-bar h1 {
  margin: 6px 0 6px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.concept-bar p {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
}

.concept-switcher {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 6px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.concept-button {
  min-width: 94px;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
}

.concept-button.is-active {
  background: var(--dark);
  color: white;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
  padding: 24px clamp(18px, 4vw, 56px) 56px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(670px, calc(100vh - 154px));
}

.hero h2,
.section h2,
.contact-section h2 {
  margin: 10px 0 16px;
  font-size: clamp(1.9rem, 3.6vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p,
.section-heading p,
.split p,
.service-area p,
.contact-section p {
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 28px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: auto 0 0;
}

.proof-strip div {
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.proof-strip dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-strip dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 36px));
  padding: 16px;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 8px;
  color: #17201d;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.media-badge strong,
.media-badge span {
  display: block;
}

.media-badge span {
  margin-top: 4px;
  color: #58625d;
  font-size: 0.9rem;
}

.band {
  margin: 0 clamp(18px, 4vw, 56px);
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 86px clamp(18px, 4vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  align-items: center;
}

.section h2 {
  max-width: 920px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  gap: 16px;
}

.sectors-grid,
.flooring-grid,
.article-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

article,
.quote-grid blockquote,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.sectors-grid article,
.flooring-grid article,
.article-grid article,
.quote-grid blockquote,
.faq-list details {
  padding: 22px;
}

article h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

article p,
blockquote p,
.faq-list p,
.process-list span,
.work-matrix p {
  color: var(--muted);
  line-height: 1.55;
}

.flooring-grid a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--accent);
  font-weight: 800;
}

.image-panel {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.check-list span {
  padding: 14px 16px;
  background: var(--panel);
  border-left: 4px solid var(--accent-2);
  border-radius: 6px;
  font-weight: 760;
}

.work-types,
.process-section,
.testimonials,
.checkatrade-section,
.service-area {
  background: var(--panel-strong);
}

.checkatrade-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.checkatrade-section .secondary-action {
  margin-top: 18px;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-cards article {
  display: grid;
  min-height: 156px;
  align-content: center;
  gap: 8px;
  padding: 22px;
}

.proof-cards strong {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.9;
}

.proof-cards span {
  color: var(--muted);
  font-weight: 780;
}

.work-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.work-matrix article {
  min-height: 168px;
  padding: 22px;
  border: 0;
  border-radius: 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  min-height: 230px;
  padding: 58px 20px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: steps;
}

.process-list li::before {
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  content: counter(steps);
  font-size: 0.9rem;
  font-weight: 850;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  margin-bottom: 10px;
}

.case-grid article {
  overflow: hidden;
}

.case-grid img {
  height: 240px;
}

.case-grid h3,
.case-grid p {
  padding-inline: 20px;
}

.case-grid h3 {
  margin-top: 20px;
}

.case-grid p {
  padding-bottom: 20px;
}

.testimonials,
.service-area,
.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

blockquote {
  margin: 0;
}

blockquote p {
  margin-top: 0;
  font-size: 1.05rem;
}

cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.article-grid article span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-cloud span {
  padding: 11px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 760;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 820;
}

.faq-list p {
  margin-bottom: 0;
}

.contact-section {
  padding: 86px clamp(18px, 4vw, 56px);
  background: var(--dark);
  color: white;
}

.contact-section .eyebrow,
.contact-section p {
  color: color-mix(in srgb, white 72%, var(--accent-2));
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: #17201d;
}

.contact-form button {
  justify-self: start;
  margin-top: 6px;
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #111;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

.footer-concept-tools {
  display: grid;
  gap: 8px;
}

.footer-concept-tools > span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-concept-tools .concept-switcher {
  box-shadow: none;
}

.work-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px) 70px;
}

.work-hero h1 {
  max-width: 900px;
  margin: 10px 0 16px;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.work-hero p {
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.62;
}

.work-hero-gallery {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 12px;
  min-height: 520px;
}

.work-hero-gallery img {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.work-hero-gallery img:first-child {
  grid-row: span 2;
}

.work-overview {
  padding-bottom: 34px;
}

.job-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.job-overview-grid a {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 154px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(18, 31, 28, 0.08);
}

.job-overview-grid a:hover {
  transform: translateY(-2px);
}

.job-overview-grid span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-overview-grid strong {
  font-size: clamp(1.02rem, 1.35vw, 1.25rem);
  line-height: 1.25;
}

.project-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  padding: 64px clamp(18px, 4vw, 56px);
}

.project-story.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.project-story.reverse .project-story-media {
  order: 2;
}

.project-story-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.project-carousel {
  position: relative;
  height: 100%;
  min-height: inherit;
}

.carousel-track {
  position: relative;
  height: 100%;
  min-height: inherit;
}

.carousel-track img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 260ms ease;
}

.carousel-track img.is-active {
  opacity: 1;
}

.carousel-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  background: color-mix(in srgb, var(--panel) 90%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.carousel-controls button {
  min-width: 88px;
  padding: 9px 12px;
  color: white;
  font-weight: 850;
  background: var(--dark);
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
}

.carousel-controls span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.project-story-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 44px);
}

.project-story-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 3.7rem);
  line-height: 1.02;
}

.story-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.story-steps section {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.story-steps h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.story-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.poster-bursts {
  display: none;
}

.better-paul-cutout {
  display: none;
}

body[data-concept="corporate"] {
  --bg: #081411;
  --ink: #eef7f1;
  --muted: #9fb2a9;
  --panel: #10231d;
  --panel-strong: #0c1b17;
  --line: rgba(222, 232, 226, 0.18);
  --accent: #8fd6bd;
  --accent-2: #d8b96a;
  --dark: #050b09;
}

body[data-concept="corporate"] .site-header {
  background: rgba(5, 11, 9, 0.92);
  color: #eef7f1;
  border-bottom-color: rgba(143, 214, 189, 0.26);
}

body[data-concept="corporate"] .brand-mark {
  background: #d8b96a;
  color: #07110e;
}

body[data-concept="corporate"] .concept-bar {
  padding-top: 46px;
  background:
    linear-gradient(90deg, rgba(143, 214, 189, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(143, 214, 189, 0.1) 1px, transparent 1px);
  background-size: 54px 54px;
}

body[data-concept="corporate"] .concept-bar h1,
body[data-concept="corporate"] .hero h2,
body[data-concept="corporate"] .work-hero h1,
body[data-concept="corporate"] .project-story-copy h2,
body[data-concept="corporate"] .section h2 {
  color: #f4fff8;
  text-transform: uppercase;
}

body[data-concept="corporate"] .concept-switcher {
  background: #0e1d19;
  border-color: rgba(143, 214, 189, 0.28);
}

body[data-concept="corporate"] .concept-button {
  color: #b8cbc2;
}

body[data-concept="corporate"] .concept-button.is-active {
  background: #8fd6bd;
  color: #07110e;
}

body[data-concept="corporate"] .hero {
  min-height: calc(100vh - 160px);
  background: radial-gradient(circle at 75% 20%, rgba(143, 214, 189, 0.16), transparent 34%);
}

body[data-concept="corporate"] .hero-copy {
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(143, 214, 189, 0.24);
  background: rgba(16, 35, 29, 0.82);
}

body[data-concept="corporate"] .hero-media,
body[data-concept="corporate"] .image-panel,
body[data-concept="corporate"] .work-hero-gallery img,
body[data-concept="corporate"] .project-story-media {
  border-radius: 0;
  border: 1px solid rgba(216, 185, 106, 0.34);
}

body[data-concept="corporate"] .hero-media img {
  filter: saturate(0.65) contrast(1.08);
}

body[data-concept="corporate"] article,
body[data-concept="corporate"] .story-steps section,
body[data-concept="corporate"] .job-overview-grid a,
body[data-concept="corporate"] .quote-grid blockquote,
body[data-concept="corporate"] .faq-list details {
  background: #10231d;
}

body[data-concept="personal"] {
  --bg: #fbf5ec;
  --ink: #2b1d16;
  --muted: #7a6659;
  --panel: #fffaf4;
  --panel-strong: #efe0cf;
  --accent: #a14d35;
  --accent-2: #1d766b;
  --dark: #2b1d16;
}

body[data-concept="personal"] .site-header {
  position: static;
  background: #fbf5ec;
}

body[data-concept="personal"] .concept-bar {
  align-items: center;
  padding-top: 54px;
}

body[data-concept="personal"] .concept-bar h1,
body[data-concept="personal"] .hero h2,
body[data-concept="personal"] .work-hero h1,
body[data-concept="personal"] .project-story-copy h2,
body[data-concept="personal"] .section h2,
body[data-concept="personal"] .contact-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1;
}

body[data-concept="personal"] .concept-bar h1 {
  max-width: 900px;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
}

body[data-concept="personal"] .hero {
  align-items: center;
  padding-top: 34px;
}

body[data-concept="personal"] .hero-copy {
  padding: 0 clamp(8px, 2vw, 32px);
}

body[data-concept="personal"] .hero-media {
  min-height: 680px;
  border-radius: 999px 999px 8px 8px;
}

body[data-concept="personal"] .hero-media::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px 999px 6px 6px;
  content: "";
  pointer-events: none;
}

body[data-concept="personal"] .media-badge {
  right: auto;
  left: 18px;
  background: #fffaf4;
}

body[data-concept="personal"] .proof-strip div {
  border-left: 4px solid var(--accent);
}

body[data-concept="personal"] .section {
  padding-block: 104px;
}

body[data-concept="personal"] .work-hero-gallery img:first-child,
body[data-concept="personal"] .project-story-media {
  border-radius: 999px 999px 8px 8px;
}

body[data-concept="search"] {
  --bg: #f7fbff;
  --ink: #07111f;
  --muted: #46576f;
  --panel: #ffffff;
  --panel-strong: #e6f0ff;
  --accent: #195ce5;
  --accent-2: #ff6a3d;
  --dark: #07111f;
}

body[data-concept="search"] .site-header {
  background: #ffffff;
  box-shadow: 0 8px 0 #dce8ff;
}

body[data-concept="search"] .concept-bar {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.5fr);
}

body[data-concept="search"] .concept-bar h1 {
  max-width: 760px;
}

body[data-concept="search"] .concept-switcher {
  box-shadow: none;
  border: 2px solid #07111f;
}

body[data-concept="search"] .concept-button.is-active {
  background: #195ce5;
}

body[data-concept="search"] .hero {
  gap: 0;
  align-items: stretch;
}

body[data-concept="search"] .hero-copy {
  position: relative;
  z-index: 1;
  border: 2px solid #07111f;
  box-shadow: 10px 10px 0 #ff6a3d;
}

body[data-concept="search"] .hero-media {
  margin: 42px 0 42px -18px;
  border: 2px solid #07111f;
  border-radius: 8px;
  box-shadow: 10px 10px 0 #195ce5;
}

body[data-concept="search"] article,
body[data-concept="search"] .story-steps section,
body[data-concept="search"] .faq-list details,
body[data-concept="search"] .quote-grid blockquote {
  border: 2px solid #07111f;
  box-shadow: 6px 6px 0 rgba(25, 92, 229, 0.18);
}

body[data-concept="search"] .work-matrix {
  border: 2px solid #07111f;
  background: #07111f;
}

body[data-concept="better"] {
  --bg: #ffd938;
  --ink: #111111;
  --muted: #3c2712;
  --panel: #ffe86a;
  --panel-strong: #ffcb18;
  --line: rgba(17, 17, 17, 0.42);
  --accent: #e2211c;
  --accent-2: #111111;
  --dark: #111111;
  --shadow: 12px 12px 0 #111111;
}

body[data-concept="better"] .site-header {
  background: #111111;
  color: #ffd938;
  border-bottom: 8px solid #e2211c;
}

body[data-concept="better"] .brand-mark {
  background: #ffd938;
  color: #111111;
}

body[data-concept="better"] .site-nav {
  color: #fff2a2;
}

body[data-concept="better"] .header-cta,
body[data-concept="better"] .primary-action,
body[data-concept="better"] .contact-form button {
  background: #e2211c;
  border-color: #111111;
  color: #fff6af;
  box-shadow: 4px 4px 0 #111111;
}

body[data-concept="better"] .secondary-action {
  background: #fff6af;
  border: 2px solid #111111;
  box-shadow: 4px 4px 0 #111111;
}

body[data-concept="better"] .concept-bar {
  align-items: center;
  background:
    radial-gradient(circle at 15% 30%, rgba(226, 33, 28, 0.16), transparent 22%),
    linear-gradient(135deg, transparent 0 48%, rgba(17, 17, 17, 0.12) 48% 52%, transparent 52%);
}

body[data-concept="better"] .concept-bar h1 {
  color: #e2211c;
  font-family: "Lobster", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(4rem, 9vw, 9.4rem);
  line-height: 0.76;
  text-shadow: 4px 4px 0 #111111;
}

body[data-concept="better"] .work-hero h1,
body[data-concept="better"] .project-story-copy h2 {
  color: #e2211c;
  font-family: "Lobster", "Brush Script MT", "Segoe Script", cursive;
  line-height: 0.84;
  text-shadow: 4px 4px 0 #111111;
}

body[data-concept="better"] .work-hero h1 {
  font-size: clamp(4rem, 8vw, 8.6rem);
}

body[data-concept="better"] .project-story-copy h2 {
  font-size: clamp(3.2rem, 6vw, 6.8rem);
}

body[data-concept="better"] .concept-switcher {
  background: #fff6af;
  border: 3px solid #111111;
  box-shadow: 8px 8px 0 #111111;
}

body[data-concept="better"] .concept-button {
  min-width: 122px;
  color: #111111;
}

body[data-concept="better"] .concept-button.is-active {
  background: #e2211c;
  color: #fff6af;
}

body[data-concept="better"] .eyebrow {
  color: #111111;
  transform: rotate(-2deg);
}

body[data-concept="better"] .hero {
  position: relative;
  display: block;
  min-height: calc(100vh - 78px);
  padding-block: clamp(28px, 5vw, 58px);
}

body[data-concept="better"] .hero h2 {
  color: #e2211c;
  font-family: "Lobster", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(5.4rem, 13vw, 13rem);
  line-height: 0.72;
  text-shadow: 5px 5px 0 #111111;
}

body[data-concept="better"] .hero-copy {
  position: relative;
  z-index: 1;
  min-height: 690px;
  padding: clamp(22px, 4vw, 42px);
  background: #ffd938;
  border: 4px solid #111111;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
  overflow: hidden;
}

body[data-concept="better"] .hero-copy::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 20%, rgba(17, 17, 17, 0.08), transparent 0 26%, transparent 27%),
    repeating-radial-gradient(circle at 82% 34%, rgba(17, 17, 17, 0.14) 0 1px, transparent 1px 9px);
  content: "";
}

body[data-concept="better"] .hero-copy > *:not(.better-paul-cutout) {
  max-width: min(760px, 58%);
  position: relative;
  z-index: 2;
}

body[data-concept="better"] .hero p {
  color: #111111;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 800;
}

body[data-concept="better"] .hero-media {
  display: none;
}

body[data-concept="better"] .hero-media::before {
  display: none;
}

body[data-concept="better"] .hero-media img {
  filter: none;
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: center;
}

body[data-concept="better"] .media-badge {
  display: none;
}

body[data-concept="better"] .better-paul-cutout {
  position: absolute;
  right: clamp(-150px, -6vw, -72px);
  bottom: -28px;
  z-index: 1;
  display: block;
  width: min(46vw, 720px);
  height: auto;
  max-height: 98%;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
  filter: drop-shadow(12px 10px 0 rgba(17, 17, 17, 0.95));
}

body[data-concept="better"] .poster-bursts {
  display: none;
}

body[data-concept="better"] .poster-bursts span {
  position: absolute;
  display: inline-flex;
  max-width: 170px;
  padding: 7px 10px;
  background: #111111;
  color: #ffd938;
  border-radius: 999px;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

body[data-concept="better"] .poster-bursts span:nth-child(1) {
  top: 10px;
  left: 18px;
}

body[data-concept="better"] .poster-bursts span:nth-child(2) {
  top: 82px;
  right: 12px;
  transform: rotate(8deg);
}

body[data-concept="better"] .poster-bursts span:nth-child(3) {
  left: 0;
  bottom: 96px;
  background: #e2211c;
  color: #fff6af;
}

body[data-concept="better"] .poster-bursts span:nth-child(4) {
  right: 18px;
  bottom: 118px;
}

body[data-concept="better"] .trust-band {
  color: #111111;
  border-color: #111111;
}

body[data-concept="better"] article,
body[data-concept="better"] .story-steps section,
body[data-concept="better"] .job-overview-grid a,
body[data-concept="better"] .carousel-controls,
body[data-concept="better"] .quote-grid blockquote,
body[data-concept="better"] .faq-list details,
body[data-concept="better"] .proof-strip div {
  border: 3px solid #111111;
  box-shadow: 6px 6px 0 #111111;
}

body[data-concept="better"] .carousel-controls button {
  color: #fff9d5;
  background: #e2211c;
  border: 2px solid #111111;
  box-shadow: 3px 3px 0 #111111;
}

body[data-concept="better"] .work-types,
body[data-concept="better"] .process-section,
body[data-concept="better"] .testimonials,
body[data-concept="better"] .checkatrade-section,
body[data-concept="better"] .service-area {
  background: #ffcb18;
}

body[data-concept="better"] .work-hero-gallery img,
body[data-concept="better"] .project-story-media {
  border: 4px solid #111111;
  border-radius: 0;
  box-shadow: 8px 8px 0 #111111;
}

body[data-concept="personal"] .hero {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

body[data-concept="personal"] .hero-media {
  order: -1;
}

body[data-concept="personal"] .hero-media img {
  object-position: center bottom;
}

body[data-concept="personal"] .brand-mark {
  border-radius: 50%;
}

body[data-concept="personal"] .hero h2 {
  max-width: 780px;
  font-size: clamp(2rem, 3.7vw, 3.9rem);
}

body[data-concept="search"] .hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
}

body[data-concept="search"] .hero-copy {
  min-height: 460px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

body[data-concept="search"] .hero-media {
  min-height: 460px;
}

body[data-concept="search"] .hero h2 {
  max-width: 1050px;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  body[data-concept="personal"] .hero,
  body[data-concept="search"] .hero {
    grid-template-columns: 1fr;
  }

  body[data-concept="personal"] .hero-media {
    order: initial;
  }

  .hero-copy {
    min-height: auto;
  }

  .process-list,
  .case-grid,
  .quote-grid,
  .job-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
  }

  .site-footer,
  .work-hero,
  .project-story,
  .project-story.reverse {
    grid-template-columns: 1fr;
  }

  .header-cta {
    justify-self: start;
  }

  .concept-bar,
  .split,
  .split.reverse,
  .testimonials,
  .checkatrade-section,
  .service-area,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .concept-switcher {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .concept-button {
    width: 100%;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-media,
  .image-panel {
    min-height: 340px;
  }

  .proof-strip,
  .proof-cards,
  .sectors-grid,
  .flooring-grid,
  .article-grid,
  .job-overview-grid,
  .work-matrix,
  .process-list,
  .case-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  body[data-concept="search"] .hero-copy {
    padding: 28px;
  }

  .section,
  .contact-section {
    padding-block: 58px;
  }

  .work-hero {
    padding-block: 52px;
  }

  .work-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.8rem);
  }

  .work-hero-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .work-hero-gallery img {
    height: 280px;
  }

  .work-hero-gallery img:first-child {
    grid-row: auto;
  }

  .project-story {
    padding-block: 48px;
  }

  .project-story.reverse .project-story-media {
    order: initial;
  }

  .project-story-media {
    min-height: 360px;
  }

  .carousel-controls {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .carousel-controls button {
    min-width: 74px;
    padding-inline: 10px;
  }

  .story-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  body[data-concept="search"] .concept-bar,
  body[data-concept="better"] .concept-bar {
    grid-template-columns: 1fr;
  }

  body[data-concept="search"] .hero,
  body[data-concept="better"] .hero,
  body[data-concept="corporate"] .hero {
    grid-template-columns: 1fr;
  }

  body[data-concept="search"] .hero-media {
    margin: 24px 0 0;
  }

  body[data-concept="better"] .hero-copy,
  body[data-concept="better"] .hero-media {
    min-height: 520px;
    transform: none;
  }
}

@media (max-width: 780px) {
  body[data-concept="corporate"] .concept-bar,
  body[data-concept="personal"] .concept-bar,
  body[data-concept="search"] .concept-bar,
  body[data-concept="better"] .concept-bar {
    grid-template-columns: 1fr;
  }

  body[data-concept="corporate"] .concept-bar h1,
  body[data-concept="search"] .concept-bar h1 {
    font-size: clamp(2.1rem, 12vw, 3.5rem);
  }

  body[data-concept="corporate"] .hero h2,
  body[data-concept="search"] .hero h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  body[data-concept="personal"] .hero-media {
    min-height: 360px;
    border-radius: 999px 999px 8px 8px;
  }

  body[data-concept="search"] .hero-copy {
    box-shadow: 6px 6px 0 #ff6a3d;
  }

  body[data-concept="search"] .hero-media {
    margin: 18px 0 0;
    box-shadow: 6px 6px 0 #195ce5;
  }

  body[data-concept="better"] .concept-bar h1 {
    font-size: clamp(3rem, 16vw, 4.9rem);
    text-shadow: 3px 3px 0 #111111;
  }

  body[data-concept="better"] .hero {
    min-height: 0;
  }

  body[data-concept="better"] .hero-copy {
    min-height: 650px;
  }

  body[data-concept="better"] .hero h2 {
    font-size: clamp(4rem, 19vw, 6.2rem);
    text-shadow: 3px 3px 0 #111111;
  }

  body[data-concept="better"] .hero-copy > *:not(.better-paul-cutout) {
    max-width: 100%;
  }

  body[data-concept="better"] .better-paul-cutout {
    right: -56px;
    width: min(88vw, 460px);
    opacity: 0.38;
  }

  body[data-concept="better"] .work-hero h1,
  body[data-concept="better"] .project-story-copy h2 {
    font-size: clamp(3.1rem, 16vw, 5.2rem);
  }

  body[data-concept="better"] .poster-bursts {
    inset: 14px;
  }

  body[data-concept="better"] .poster-bursts span {
    max-width: 138px;
    font-size: 0.82rem;
  }
}
