@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@1,700&display=swap");
:root {
  --ink: #11110f;
  --paper: #f3f0e9;
  --white: #fffdf8;
  --red: #e23721;
  --red-dark: #bd2818;
  --muted: #67665f;
  --line: #c8c4ba;
  --container: 1480px;
  --gutter: clamp(20px, 4vw, 72px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.menu-is-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { touch-action: manipulation; }
button { font: inherit; }
img { display: block; width: 100%; height: auto; }
::selection { color: var(--white); background: var(--red); }
:focus-visible { outline: 3px solid #006dd4; outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 12px var(--gutter);
  background: rgba(243,240,233,.94);
  border-bottom: 1px solid rgba(17,17,15,.16);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 12px; width: max-content; }
.brand img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; }
.brand span { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { font-size: 14px; text-transform: uppercase; letter-spacing: -.02em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a { position: relative; padding: 14px 0; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.nav a::after { content: ""; position: absolute; right: 0; bottom: 7px; left: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform 220ms var(--ease); }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; line-height: 1.18; }
.header-cta span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.header-cta strong { margin-top: 4px; font-size: 16px; }
.menu-toggle { display: none; }

.hero { padding: 36px var(--gutter) 0; }
.hero-kicker { max-width: var(--container); margin: 0 auto 18px; display: flex; justify-content: space-between; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); }
.eyebrow-light::before { background: var(--white); }
.hero-index { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero-copy { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .45fr); align-items: end; gap: 7vw; }
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  margin-bottom: -1.8vw;
  font-size: clamp(4.4rem, 9.6vw, 10.8rem);
  line-height: .78;
  letter-spacing: -.075em;
  font-weight: 900;
  text-transform: uppercase;
}
.hero h1 em, h2 em { color: var(--red); font-family: "Playfair Display", Georgia, serif; font-weight: 700; text-transform: none; }
.hero-intro { padding-bottom: clamp(30px, 5vw, 68px); }
.hero-intro p { max-width: 31ch; margin-bottom: 26px; color: #45443f; font-size: clamp(17px, 1.5vw, 21px); }
.button { min-height: 56px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; padding: 0 20px 0 24px; border: 1px solid transparent; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: background 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease); }
.button:hover { transform: translateY(-2px); }
.button span:last-child { font-size: 20px; font-weight: 400; }
.button-primary { min-width: 250px; background: var(--red); color: var(--white); }
.button-primary:hover { background: var(--ink); }
.hero-visual { position: relative; max-width: var(--container); margin: 0 auto; height: clamp(430px, 54vw, 780px); overflow: hidden; background: #d8d8d2; }
.hero-visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(17,17,15,.12); pointer-events: none; }
.hero-visual img { height: 100%; object-fit: cover; }
.hero-caption { position: absolute; right: 0; bottom: 0; display: flex; gap: 28px; padding: 18px 24px; color: var(--white); background: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.proof-strip { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr) 1.25fr; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.proof-strip > * { min-height: 110px; padding: 24px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.proof-strip > *:last-child { border-right: 0; }
.proof-strip strong { font-size: clamp(25px, 2.2vw, 36px); line-height: 1; letter-spacing: -.05em; }
.proof-strip span { margin-top: 8px; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.proof-strip a { flex-direction: row; align-items: center; justify-content: space-between; background: var(--white); transition: background 200ms, color 200ms; }
.proof-strip a:hover { background: var(--red); color: white; }
.proof-strip a span { margin: 0; color: inherit; }
.proof-strip a > span:last-child { font-size: 24px; }

.marquee { overflow: hidden; padding: 24px 0; border-bottom: 1px solid var(--ink); background: var(--red); color: var(--white); }
.marquee div { width: max-content; display: flex; align-items: center; gap: 30px; font-size: clamp(20px, 2.4vw, 36px); font-weight: 900; line-height: 1; letter-spacing: -.03em; animation: drift 28s linear infinite; }
.marquee div::after { content: "INTERIORS · EXTERIORS · WALLPAPER · GIB WORK · DECKS · ROOFS ·"; word-spacing: 20px; }
.marquee i { font-family: Georgia, serif; font-weight: 400; }

.section { max-width: var(--container); margin: 0 auto; padding: clamp(90px, 11vw, 170px) var(--gutter); }
.services { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 9vw, 150px); }
.section-heading { position: sticky; top: 125px; align-self: start; }
.section-heading h2, .finish h2, .work h2, .about h2, .quote h2 { margin: 24px 0 30px; font-size: clamp(3.2rem, 6.2vw, 7.4rem); line-height: .86; letter-spacing: -.065em; text-transform: uppercase; }
.section-heading p { max-width: 38ch; color: var(--muted); font-size: 17px; }
.service-list { border-top: 2px solid var(--ink); }
.service-row { position: relative; display: grid; grid-template-columns: 48px minmax(170px, .8fr) 1.2fr 32px; gap: 20px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line); transition: padding 220ms var(--ease), background 220ms; }
.service-row::before { content: ""; position: absolute; inset: 0 -20px; z-index: -1; background: var(--white); transform: scaleY(0); transform-origin: bottom; transition: transform 220ms var(--ease); }
.service-row:hover { padding-right: 12px; padding-left: 12px; }
.service-row:hover::before { transform: scaleY(1); }
.service-row > span { color: var(--red); font-size: 11px; font-weight: 800; }
.service-row h3 { margin: 0; font-size: clamp(18px, 1.7vw, 24px); letter-spacing: -.035em; }
.service-row p { margin: 0; color: var(--muted); font-size: 14px; }
.service-row i { font-size: 25px; font-style: normal; }

.finish { max-width: none; padding-right: max(var(--gutter), calc((100vw - var(--container))/2 + var(--gutter))); padding-left: max(var(--gutter), calc((100vw - var(--container))/2 + var(--gutter))); background: var(--ink); color: var(--white); }
.finish-grid { display: grid; grid-template-columns: .9fr .75fr .45fr; gap: clamp(28px, 4vw, 68px); align-items: end; }
.finish-copy p { max-width: 40ch; color: #bdbbb3; font-size: 16px; }
.finish-copy ol { margin: 48px 0 0; padding: 0; list-style: none; border-top: 1px solid #454540; }
.finish-copy li { display: grid; grid-template-columns: 45px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid #454540; }
.finish-copy li > strong { color: var(--red); font-size: 11px; }
.finish-copy li span { color: #bdbbb3; font-size: 13px; }
.finish-copy li b { display: block; color: var(--white); font-size: 14px; }
.finish-image { margin: 0; }
.finish-image img { aspect-ratio: 4 / 5; object-fit: cover; }
.finish-image figcaption { padding: 14px 0; color: #aaa79e; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.colour-card { min-height: 420px; display: flex; flex-direction: column; padding: 26px; background: var(--white); color: var(--ink); }
.colour-preview { min-height: 185px; margin: 24px -4px; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; background: var(--sample); color: var(--sample-text); transition: background 300ms var(--ease), color 300ms var(--ease); }
.colour-preview span { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.colour-preview strong { font-size: 25px; line-height: 1; letter-spacing: -.05em; }
.swatches { display: flex; gap: 10px; }
.swatches button { width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--swatch); box-shadow: 0 0 0 1px rgba(0,0,0,.25); cursor: pointer; transition: transform 180ms var(--ease), box-shadow 180ms; }
.swatches button:hover { transform: scale(1.08); }
.swatches button.is-active { box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--ink); }
.colour-card p { margin: auto 0 0; color: var(--muted); font-size: 12px; }

.work { padding-right: var(--gutter); padding-left: var(--gutter); }
.work-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.work-heading h2 { margin-top: 0; text-align: right; }
.project-grid { display: grid; grid-template-columns: 1.3fr .72fr; grid-template-rows: auto auto; gap: 18px; }
.project { position: relative; margin: 0; overflow: hidden; background: #ddd; }
.project-wide { grid-row: 1 / 3; min-height: 780px; }
.project-tall { min-height: 520px; }
.project-small { min-height: 240px; }
.project img { height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.project:hover img { transform: scale(1.025); }
.project figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; align-items: end; gap: 24px; padding: 60px 24px 22px; color: white; background: linear-gradient(transparent, rgba(0,0,0,.76)); }
.project figcaption span { font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.project figcaption small { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

.about { position: relative; display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; overflow: hidden; border-top: 1px solid var(--line); }
.about-mark { align-self: center; color: var(--red); font-size: clamp(18rem, 34vw, 40rem); font-weight: 900; line-height: .63; letter-spacing: -.12em; transform: translateX(-12%); }
.about-copy { align-self: center; }
.about-copy h2 { font-size: clamp(3.3rem, 5.8vw, 7rem); }
.about-lead { max-width: 54ch; color: #42413c; font-size: clamp(18px, 1.7vw, 24px); }
.about-proof { margin-top: 54px; border-top: 2px solid var(--ink); }
.about-proof div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.about-proof span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.about-proof strong { font-size: 13px; }

.quote { position: relative; max-width: none; min-height: 660px; display: grid; place-items: center; overflow: hidden; background: var(--red); color: var(--white); }
.quote::before { content: ""; position: absolute; top: -18%; right: 7%; width: 46vw; height: 46vw; border: clamp(60px, 8vw, 120px) solid rgba(255,255,255,.12); border-radius: 50%; }
.quote-inner { position: relative; z-index: 2; width: min(100%, var(--container)); }
.quote h2 { max-width: 900px; margin-bottom: 24px; font-size: clamp(4.2rem, 8.8vw, 10rem); }
.quote h2 em { color: var(--white); }
.quote p { max-width: 44ch; font-size: 18px; }
.quote-actions { margin-top: 38px; display: flex; align-items: center; gap: 36px; }
.button-light { min-width: 285px; background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--ink); color: var(--white); }
.text-link { min-height: 48px; display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.65); font-size: 13px; font-weight: 700; }

footer { min-height: 260px; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 50px; align-items: start; padding: 60px var(--gutter) 42px; background: var(--ink); color: var(--white); }
.footer-brand { font-size: 23px; font-weight: 900; letter-spacing: -.06em; }
.footer-brand em { color: var(--red); font-family: Georgia, serif; font-weight: 400; }
footer p { color: #aaa79e; font-size: 12px; }
footer > div { display: flex; flex-direction: column; gap: 10px; font-size: 13px; font-weight: 700; }
footer small { align-self: end; color: #77756f; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.mobile-call { display: none; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 650ms var(--ease), transform 650ms var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@keyframes drift { to { transform: translateX(-50%); } }

@media (max-width: 1024px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .header-cta { margin-right: 62px; }
  .menu-toggle { position: absolute; right: var(--gutter); display: grid; place-content: center; gap: 7px; width: 48px; height: 48px; padding: 0; border: 1px solid var(--ink); background: transparent; cursor: pointer; }
  .menu-toggle span { width: 20px; height: 2px; background: var(--ink); transition: transform 200ms, opacity 200ms; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .nav.is-open { position: fixed; inset: 85px 0 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; padding: var(--gutter); background: var(--paper); }
  .nav.is-open a { font-size: clamp(42px, 8vw, 76px); letter-spacing: -.06em; line-height: 1; text-transform: uppercase; }
  .hero-copy { grid-template-columns: 1fr .45fr; gap: 28px; }
  .hero h1 { font-size: 9.4vw; }
  .services { grid-template-columns: 1fr; }
  .section-heading { position: static; }
  .finish-grid { grid-template-columns: 1fr 1fr; }
  .colour-card { grid-column: 1 / 3; min-height: 320px; }
  .colour-preview { min-height: 120px; }
  .project-wide { min-height: 620px; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 76px; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .site-header { min-height: 74px; padding-top: 8px; padding-bottom: 8px; }
  .brand img { width: 48px; height: 48px; }
  .brand small, .header-cta { display: none; }
  .menu-toggle { width: 44px; height: 44px; }
  .nav.is-open { inset: 73px 0 0; }
  .hero { padding-top: 28px; }
  .hero-copy { display: block; }
  .hero h1 { margin-bottom: 34px; font-size: clamp(3.7rem, 17.2vw, 6rem); line-height: .82; }
  .hero-intro { padding-bottom: 28px; }
  .hero-intro p { max-width: 100%; }
  .button-primary { width: 100%; }
  .hero-visual { height: 69svh; min-height: 500px; margin-right: calc(var(--gutter) * -1); margin-left: calc(var(--gutter) * -1); }
  .hero-visual img { object-position: 60% center; }
  .hero-caption { right: 12px; bottom: 12px; left: 12px; justify-content: space-between; gap: 10px; padding: 14px; }
  .proof-strip { grid-template-columns: 1fr 1fr; margin-right: calc(var(--gutter) * -1); margin-left: calc(var(--gutter) * -1); }
  .proof-strip > * { min-height: 96px; padding: 18px; border-bottom: 1px solid var(--line); }
  .proof-strip > *:nth-child(2) { border-right: 0; }
  .proof-strip > *:nth-child(3), .proof-strip > *:nth-child(4) { border-bottom: 0; }
  .proof-strip strong { font-size: 26px; }
  .marquee { padding: 18px 0; }
  .section { padding-top: 88px; padding-bottom: 88px; }
  .section-heading h2, .finish h2, .work h2, .about h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .service-row { grid-template-columns: 34px 1fr 24px; gap: 12px; padding: 24px 0; }
  .service-row p { grid-column: 2 / 4; }
  .service-row i { grid-column: 3; grid-row: 1; }
  .finish-grid { display: flex; flex-direction: column; }
  .finish-copy, .finish-image, .colour-card { width: 100%; }
  .colour-card { min-height: 390px; }
  .work-heading { display: block; }
  .work-heading h2 { margin-top: 24px; text-align: left; }
  .project-grid { display: flex; flex-direction: column; }
  .project, .project-wide, .project-tall, .project-small { min-height: 0; aspect-ratio: 4 / 5; }
  .project-wide { aspect-ratio: 3 / 4; }
  .project-small { aspect-ratio: 1 / 1; }
  .project figcaption { align-items: flex-start; flex-direction: column; gap: 2px; }
  .about { display: block; }
  .about-mark { margin: 0 0 50px; font-size: 60vw; transform: translateX(-7%); }
  .about-proof div { grid-template-columns: 1fr; gap: 5px; }
  .quote { min-height: 620px; padding-right: var(--gutter); padding-left: var(--gutter); }
  .quote h2 { font-size: clamp(4rem, 18vw, 6.3rem); }
  .quote-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .button-light { width: 100%; }
  .text-link { width: max-content; max-width: 100%; font-size: 11px; }
  footer { grid-template-columns: 1fr 1fr; gap: 36px 20px; padding-bottom: 52px; }
  footer small { grid-column: 1 / 3; justify-self: start; }
  .mobile-call { position: fixed; z-index: 50; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); left: 10px; min-height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; background: var(--red); color: white; box-shadow: 0 12px 32px rgba(0,0,0,.26); }
  .mobile-call span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
  .mobile-call strong { font-size: 15px; }
}

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