@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;1,500&display=swap');

:root {
  --ink: #171b18;
  --cream: #f2efe8;
  --paper: #faf8f3;
  --sage: #9aac95;
  --line: rgba(23, 27, 24, 0.18);
  --display: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

.pe-loader { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: var(--ink); transition: opacity .55s ease, visibility .55s ease; }
.pe-loader__mark { width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.22); border-top-color: white; border-radius: 50%; animation: pe-loader-spin .85s linear infinite; }
.pe-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes pe-loader-spin { to { transform: rotate(360deg); } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; width: 100%; }
.section-pad { padding-left: clamp(24px, 5.5vw, 88px); padding-right: clamp(24px, 5.5vw, 88px); }

.site-header { position: fixed; z-index: 50; inset: 0 0 auto 0; height: 92px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 clamp(24px, 4.5vw, 72px); color: white; border-bottom: 1px solid rgba(255,255,255,.22); transition: .35s ease; }
.site-header.scrolled { height: 76px; background: rgba(250,248,243,.94); color: var(--ink); border-color: var(--line); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand-name { font-family: "Manrope", sans-serif; font-size: 18px; font-weight: 600; letter-spacing: -.045em; }
.brand-name em { font-family: var(--display); font-weight: 500; }
.desktop-nav { height: 100%; display: flex; align-items: center; gap: clamp(18px, 2.1vw, 34px); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.desktop-nav a, .footer-links a { transition: color .25s ease, opacity .25s ease; }
.footer-links a:hover { opacity: .58; }
.desktop-nav > a { height: 100%; display: flex; align-items: center; position: relative; }
.desktop-nav > a:after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .28s ease; }
.desktop-nav > a:hover:after, .desktop-nav > a[aria-current="page"]:after { transform: scaleX(1); transform-origin: left; }
.nav-dropdown { height: 100%; display: flex; align-items: center; }
.nav-dropdown-toggle { height: 100%; display: flex; align-items: center; gap: 8px; padding: 0; border: 0; background: transparent; color: inherit; font: inherit; text-transform: uppercase; letter-spacing: inherit; cursor: pointer; }
.nav-dropdown-toggle span { width: 7px; height: 7px; margin-top: -4px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; font-size: 0; transform: rotate(45deg); transform-origin: center; transition: transform .25s ease; }
.nav-dropdown.open .nav-dropdown-toggle span { margin-top: 4px; transform: rotate(225deg); }
.nav-dropdown-panel { visibility: hidden; opacity: 0; pointer-events: none; position: fixed; z-index: 55; left: clamp(24px, 4.5vw, 72px); right: clamp(24px, 4.5vw, 72px); top: 77px; display: grid; grid-template-columns: .62fr 1.6fr .52fr; gap: 38px; padding: 38px; background: var(--paper); color: var(--ink); box-shadow: 0 24px 65px rgba(11,15,12,.18); transform: translateY(-8px); transition: opacity .22s ease, transform .22s ease, visibility .22s; }
.site-header:not(.scrolled) .nav-dropdown-panel { top: 93px; }
.nav-dropdown:hover .nav-dropdown-panel, .nav-dropdown.open .nav-dropdown-panel { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown.is-current { position: relative; }
.nav-dropdown.is-current:after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: currentColor; }
.dropdown-intro { padding: 4px 35px 4px 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; }
.dropdown-intro > span, .dropdown-links small { color: #858a84; font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; }
.dropdown-intro strong { margin: 18px 0 34px; font-family: var(--display); font-size: 28px; font-weight: 500; line-height: 1.15; text-transform: none; letter-spacing: -.025em; }
.dropdown-intro a { margin-top: auto; font-size: 9px; }
.dropdown-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 0 25px; }
.dropdown-links a { min-height: 72px; padding: 11px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; align-items: center; font-family: var(--display); font-size: 18px; text-transform: none; letter-spacing: -.015em; }
.dropdown-links small { grid-column: 1 / -1; margin-bottom: -5px; font-family: var(--sans); }
.dropdown-links a > span { font-family: var(--sans); font-size: 13px; }
.dropdown-preview-card { align-self: stretch; min-height: 100%; overflow: hidden; background: var(--ink); color: white; display: grid; grid-template-rows: 1fr auto; }
.dropdown-preview-card img { height: 190px; object-fit: cover; opacity: .9; transition: opacity .25s ease, transform .35s ease; }
.dropdown-preview-card span { padding: 13px 15px; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }
.nav-dropdown-panel.preview-active .dropdown-preview-card img { opacity: 1; transform: scale(1.03); }
.header-cta { justify-self: end; position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; gap: 18px; padding: 11px 8px 11px 18px; border: 1px solid rgba(255,255,255,.55); border-radius: 50px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; transition: transform .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease; }
.header-cta:before { content: ""; position: absolute; z-index: -1; inset: -1px; border-radius: inherit; background: white; transform: scaleX(0); transform-origin: right; transition: transform .35s cubic-bezier(.22,.61,.36,1); }
.header-cta__label, .header-cta__icon { position: relative; z-index: 1; }
.scrolled .header-cta { border-color: var(--line); }
.header-cta__icon { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--ink); transition: transform .3s ease, background .3s ease, color .3s ease; }
.scrolled .header-cta__icon { background: var(--ink); color: white; }
.menu-toggle, .mobile-menu { display: none; }

.hero { min-height: 810px; height: 100svh; position: relative; color: white; overflow: hidden; background: #1f241f; }
.hero video { height: 100%; object-fit: cover; object-position: center 42%; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,18,14,.71) 0%, rgba(12,18,14,.28) 54%, rgba(12,18,14,.2) 100%), linear-gradient(0deg, rgba(10,12,10,.52), transparent 48%); }
.hero-content { position: absolute; z-index: 2; left: clamp(24px, 5.5vw, 88px); right: clamp(24px, 5.5vw, 88px); bottom: clamp(56px, 8vh, 96px); }
.eyebrow { margin: 0 0 24px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .22em; }
.eyebrow.light { color: rgba(255,255,255,.76); }
.hero h1, h2 { font-family: var(--display); font-weight: 500; letter-spacing: -.045em; }
.hero h1 { margin: 0; max-width: 1000px; font-size: clamp(66px, 8.9vw, 142px); line-height: .84; }
.hero h1 em, h2 em { font-weight: 500; color: var(--sage); }
.hero-bottom { display: flex; align-items: end; justify-content: space-between; margin: 40px 0 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.35); }
.hero-bottom > p { width: min(440px, 48%); margin: 0; font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.82); }
.circle-link { width: 82px; height: 82px; padding-top: 10px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; display: grid; place-content: center; gap: 6px; text-align: center; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; transition: .3s; }
.circle-link:hover { background: white; color: var(--ink); }
.circle-link span { font-size: 15px; }
.hero-proof { position: absolute; right: clamp(24px, 5.5vw, 88px); top: 23%; z-index: 2; display: flex; gap: 13px; align-items: center; }
.hero-proof strong { font-family: var(--display); font-size: 28px; font-weight: 500; }
.hero-proof span { padding-left: 13px; border-left: 1px solid rgba(255,255,255,.42); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; line-height: 1.55; }

.intro { padding-top: 145px; padding-bottom: 90px; display: grid; grid-template-columns: 1fr 2.1fr; }
.section-kicker { display: flex; align-items: flex-start; gap: 18px; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.section-kicker span { color: #858a84; }
.section-kicker p { margin: 0; }
.intro-copy h2, .review-heading h2 { margin: -18px 0 38px; font-size: clamp(48px, 6.2vw, 91px); line-height: .98; }
.intro-copy > p { margin: 0 0 0 auto; max-width: 470px; color: #626760; font-size: 16px; line-height: 1.7; }

.service-grid { display: grid; grid-template-columns: 1.14fr .86fr; gap: clamp(18px, 2.2vw, 34px); padding-bottom: 34px; }
.service-card { height: clamp(460px, 48vw, 630px); position: relative; overflow: hidden; color: white; background: #303832; }
.service-card--wide { height: clamp(540px, 57vw, 760px); }
.service-card:nth-child(2) { margin-top: 120px; }
.service-card img { height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.service-card:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,10,7,.72), transparent 58%); }
.service-card:hover img { transform: scale(1.035); }
.card-number { position: absolute; z-index: 2; top: 28px; left: 30px; font-size: 11px; letter-spacing: .15em; }
.card-copy { position: absolute; z-index: 2; bottom: 32px; left: 30px; }
.card-copy p { margin: 0 0 10px; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.72); }
.card-copy h3 { margin: 0; font-family: var(--display); font-weight: 500; font-size: clamp(39px, 4.5vw, 68px); letter-spacing: -.035em; }
.card-arrow { position: absolute; z-index: 2; right: 30px; bottom: 35px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; display: grid; place-items: center; transition: .3s; }
.service-card:hover .card-arrow { background: white; color: var(--ink); transform: rotate(45deg); }

.all-services { padding-top: 110px; padding-bottom: 150px; display: grid; grid-template-columns: 1fr 2.1fr; }
.all-services > p { margin: 12px 0 0; color: #6e736d; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; }
.service-links { border-top: 1px solid var(--line); }
.service-links a { position: relative; display: flex; justify-content: space-between; align-items: center; padding: 23px 4px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: clamp(25px, 3vw, 40px); letter-spacing: -.025em; transition: padding .3s ease, color .3s ease; }
.service-link-label { transition: transform .3s ease; }
.service-link-arrow { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid transparent; border-radius: 50%; font-family: var(--sans); font-size: 17px; transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease; }
.service-preview { position: absolute; z-index: 4; right: 76px; top: 50%; width: clamp(120px, 11vw, 175px); aspect-ratio: 1; overflow: hidden; opacity: 0; pointer-events: none; transform: translateY(-50%) scale(.82) rotate(2deg); box-shadow: 0 18px 45px rgba(19,24,20,.18); transition: opacity .28s ease, transform .35s cubic-bezier(.2,.8,.2,1); }
.service-preview img { width: 100%; height: 100%; object-fit: cover; }
.service-links a:hover { z-index: 5; padding-left: 14px; }
.service-links a:hover .service-link-label { transform: translateX(8px); }
.service-links a:hover .service-link-arrow { background: var(--ink); color: white; transform: rotate(45deg); }
.service-links a:hover .service-preview { opacity: 1; transform: translateY(-50%) scale(1) rotate(-2deg); }

.experience { background: var(--ink); color: white; display: grid; grid-template-columns: 1fr 1fr; min-height: 880px; }
.experience-media { position: relative; min-height: 700px; }
.experience-media > img { height: 100%; object-fit: cover; }
.experience-stamp { position: absolute; right: -70px; bottom: 70px; width: 150px; height: 150px; background: var(--sage); color: var(--ink); border-radius: 50%; display: grid; place-content: center; text-align: center; }
.experience-stamp span { font-family: var(--display); font-size: 32px; }
.experience-stamp small { margin-top: 8px; font-size: 8px; line-height: 1.5; text-transform: uppercase; letter-spacing: .12em; }
.experience-copy { padding: 120px clamp(40px, 8vw, 130px); display: flex; flex-direction: column; justify-content: center; }
.experience-copy .section-kicker { color: rgba(255,255,255,.66); }
.experience-copy h2 { margin: 70px 0 36px; font-size: clamp(48px, 5.3vw, 78px); line-height: .98; }
.experience-copy > p { margin: 0; color: rgba(255,255,255,.68); line-height: 1.8; max-width: 490px; }
.experience-copy ul { list-style: none; margin: 55px 0 40px; padding: 0; border-top: 1px solid rgba(255,255,255,.18); }
.experience-copy li { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.18); font-size: 13px; letter-spacing: .03em; }
.experience-copy li span { display: inline-block; width: 55px; color: var(--sage); font-size: 10px; }
.text-link { width: max-content; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.4); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.text-link span { margin-left: 22px; }

.reviews { padding-top: 150px; padding-bottom: 150px; }
.review-heading { display: grid; grid-template-columns: 1fr 2.1fr; }
.review-heading h2 { margin-bottom: 75px; }
.featured-review { margin-left: 32%; padding: 60px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stars { color: #8a9a85; letter-spacing: .32em; font-size: 12px; }
.featured-review blockquote { margin: 30px 0 55px; max-width: 900px; font-family: var(--display); font-size: clamp(30px, 3.5vw, 50px); line-height: 1.28; letter-spacing: -.02em; }
.featured-review footer { display: flex; justify-content: space-between; color: #777c75; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.review-heading { position: relative; }
.review-controls { grid-column: 2; justify-self: end; align-self: end; display: flex; gap: 10px; margin: -58px 0 78px; }
.review-controls button, .lightbox-close, .drawer-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: inherit; cursor: pointer; transition: background .25s ease, color .25s ease, transform .25s ease; }
.review-controls button:hover, .drawer-close:hover { background: var(--ink); color: white; transform: translateY(-2px); }
.featured-review { transition: opacity .25s ease, transform .25s ease; }
.reviews.is-changing .featured-review { opacity: 0; transform: translateY(12px); }
.reviews-grid { margin-left: 32%; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.quote-card { min-height: 360px; padding: 48px 45px 40px 0; border-bottom: 1px solid var(--line); }
.quote-card:nth-child(even) { padding-left: 45px; border-left: 1px solid var(--line); }
.quote-card .stars { margin-bottom: 30px; }
.quote-card blockquote { margin: 0 0 40px; font-family: var(--display); font-size: clamp(27px, 3vw, 39px); line-height: 1.3; }
.quote-card footer { display: flex; flex-direction: column; gap: 8px; color: #777c75; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }

.contact-cta { min-height: 780px; position: relative; color: white; display: grid; place-items: center; overflow: hidden; }
.contact-cta > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 44%; }
.contact-overlay { position: absolute; inset: 0; background: rgba(12,17,13,.68); }
.contact-copy { position: relative; z-index: 2; width: min(900px, calc(100% - 48px)); text-align: center; }
.contact-copy h2 { margin: 0; font-size: clamp(54px, 7.4vw, 110px); line-height: .93; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; margin: 32px auto 38px; color: rgba(255,255,255,.74); line-height: 1.7; }
.button-light { display: inline-flex; gap: 30px; align-items: center; background: white; color: var(--ink); border-radius: 50px; padding: 17px 20px 17px 25px; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease; }
.button-light span { font-size: 16px; transition: transform .3s ease; }

.site-footer { background: #111512; color: white; padding: 90px clamp(24px, 5.5vw, 88px) 30px; }
.footer-top { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 50px; align-items: start; padding-bottom: 65px; border-bottom: 1px solid rgba(255,255,255,.15); }
.brand--footer .brand-name { font-size: 22px; }
.footer-top p { margin: 0; color: rgba(255,255,255,.57); line-height: 1.65; font-size: 14px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; font-family: var(--display); font-size: 20px; }
.footer-links { padding: 65px 0 80px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 50px; }
.footer-links > div { display: flex; flex-direction: column; gap: 13px; font-size: 13px; }
.footer-links > div > span { margin-bottom: 10px; color: rgba(255,255,255,.4); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.footer-enquire { justify-self: end; align-self: center; font-family: var(--display); font-size: 30px; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 10px; }
.footer-enquire span { margin-left: 35px; font-family: var(--sans); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); display: flex; justify-content: space-between; color: rgba(255,255,255,.4); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { height: 76px; grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { justify-self: end; position: relative; z-index: 61; display: flex; flex-direction: column; justify-content: center; gap: 7px; width: 38px; height: 38px; padding: 0; border: 0; background: none; color: inherit; }
  .menu-toggle span { display: block; width: 28px; height: 1px; background: currentColor; transition: .3s; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 60; inset: 0; overflow-y: auto; background: var(--ink); color: white; padding: 105px 28px 40px; flex-direction: column; }
  .menu-open .mobile-menu { display: flex; }
  .mobile-menu > a, .mobile-services-toggle { min-height: 66px; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.16); background: none; color: white; text-align: left; font-family: var(--display); font-size: 34px; }
  .mobile-services-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
  .mobile-services-toggle span { font-family: var(--sans); font-size: 22px; transition: transform .25s; }
  .mobile-services-toggle.open span { transform: rotate(45deg); }
  .mobile-services-list { display: none; padding: 8px 0 16px 18px; border-bottom: 1px solid rgba(255,255,255,.16); grid-template-columns: 1fr 1fr; gap: 0 18px; }
  .mobile-services-toggle.open + .mobile-services-list { display: grid; }
  .mobile-services-list a { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.09); font-size: 13px; color: rgba(255,255,255,.72); }
  .mobile-services-list a:first-child { grid-column: 1 / -1; color: var(--sage); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
  .mobile-menu .mobile-phone { margin-top: 35px; min-height: auto; font-family: var(--sans); font-size: 13px; border: 0; color: var(--sage); }
  .hero { min-height: 700px; }
  .hero h1 { font-size: clamp(57px, 13.5vw, 86px); }
  .hero-proof { display: none; }
  .intro, .all-services, .review-heading { grid-template-columns: 1fr; gap: 70px; }
  .intro-copy h2, .review-heading h2 { margin-top: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .experience-copy { padding: 100px 55px; }
  .experience-stamp { width: 125px; height: 125px; right: -62px; }
  .featured-review, .reviews-grid { margin-left: 0; }
}

@media (max-width: 640px) {
  .brand-name { font-size: 16px; }
  .hero { min-height: 720px; }
  .hero video { object-position: 56% center; }
  .hero-content { bottom: 36px; }
  .hero h1 { font-size: 15vw; line-height: .9; }
  .hero-bottom { margin-top: 32px; align-items: center; }
  .hero-bottom > p { width: calc(100% - 78px); font-size: 13px; line-height: 1.55; }
  .circle-link { width: 64px; height: 64px; }
  .intro { padding-top: 95px; padding-bottom: 65px; gap: 45px; }
  .intro-copy h2, .review-heading h2 { font-size: 45px; }
  .intro-copy > p { font-size: 14px; }
  .service-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card, .service-card--wide { height: 510px; }
  .service-card:nth-child(2), .service-card:nth-child(4) { margin-top: 0; }
  .card-copy { left: 22px; bottom: 25px; }
  .card-number { left: 22px; top: 22px; }
  .card-arrow { right: 22px; bottom: 26px; }
  .all-services { padding-top: 75px; padding-bottom: 100px; gap: 35px; }
  .service-links a { font-size: 25px; }
  .experience { grid-template-columns: 1fr; }
  .experience-media { min-height: 560px; }
  .experience-stamp { right: 20px; bottom: -58px; }
  .experience-copy { padding: 120px 24px 90px; }
  .experience-copy h2 { margin-top: 55px; font-size: 48px; }
  .reviews { padding-top: 100px; padding-bottom: 100px; }
  .review-heading { gap: 45px; }
  .review-heading h2 { margin-bottom: 25px; }
  .featured-review { padding: 45px 0; }
  .featured-review blockquote { font-size: 29px; }
  .featured-review footer { flex-direction: column; gap: 10px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .quote-card:nth-child(even) { padding-left: 0; border-left: 0; }
  .contact-cta { min-height: 680px; }
  .contact-copy h2 { font-size: 14vw; }
  .footer-top, .footer-links { grid-template-columns: 1fr; }
  .footer-contact { font-size: 18px; }
  .footer-enquire { justify-self: start; }
  .footer-bottom { align-items: flex-start; gap: 15px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .service-card img { transition: none; }
}

/* Interior pages */
.inner-page .site-header { background: rgba(250,248,243,.96); color: var(--ink); border-color: var(--line); backdrop-filter: blur(14px); }
.inner-page .header-cta { border-color: var(--line); }
.inner-page .header-cta:before, .scrolled .header-cta:before { background: var(--ink); }
.inner-page .header-cta__icon { background: var(--ink); color: white; }
.page-hero { padding: 190px clamp(24px, 5.5vw, 88px) 110px; background: var(--cream); }
.page-hero .eyebrow { color: #6f746d; }
.page-hero h1 { margin: 0; max-width: 1180px; font-family: var(--display); font-size: clamp(62px, 9vw, 136px); font-weight: 500; line-height: .88; letter-spacing: -.05em; }
.page-hero h1 em { color: var(--sage); font-weight: 500; }
.page-hero__foot { margin-top: 65px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 40px; }
.page-hero__foot p { max-width: 560px; margin: 0 0 0 auto; color: #60655f; line-height: 1.75; }
.breadcrumb { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: #777c75; }
.service-index { padding-top: 110px; padding-bottom: 140px; }
.service-index__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.index-card { position: relative; min-height: 610px; overflow: hidden; color: white; }
.index-card:nth-child(3n) { grid-column: span 2; min-height: 700px; }
.index-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .6s ease; }
.index-card:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,12,9,.8), transparent 60%); }
.index-card:hover img { transform: scale(1.03); }
.index-card__copy { position: absolute; z-index: 2; left: 32px; right: 32px; bottom: 30px; display: flex; align-items: end; justify-content: space-between; }
.index-card__copy p { margin: 0 0 9px; font-size: 10px; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.72); }
.index-card h2 { margin: 0; font-size: clamp(38px, 4vw, 62px); }
.index-card__copy > span { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; display: grid; place-items: center; }

.product-hero { min-height: 860px; display: grid; grid-template-columns: 46% 54%; background: var(--ink); color: white; }
.product-hero__copy { padding: 190px clamp(30px, 5.5vw, 90px) 90px; display: flex; flex-direction: column; justify-content: center; }
.product-hero__copy .breadcrumb { color: rgba(255,255,255,.55); }
.product-hero h1 { margin: 75px 0 34px; font-family: var(--display); font-size: clamp(60px, 7.8vw, 116px); font-weight: 500; line-height: .87; letter-spacing: -.05em; }
.product-hero h1 em { display: block; color: var(--sage); font-weight: 500; }
.product-hero__copy > p { max-width: 530px; margin: 0; color: rgba(255,255,255,.68); line-height: 1.75; }
.product-hero__actions { display: flex; align-items: center; gap: 26px; margin-top: 45px; }
.button-sage { display: inline-flex; align-items: center; gap: 28px; padding: 17px 20px 17px 24px; background: var(--sage); color: var(--ink); border-radius: 50px; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease; }
.product-hero__actions a:last-child { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.68); }
.product-hero__media { min-height: 760px; }
.product-hero__media img { height: 100%; object-fit: cover; }
.product-about { padding-top: 140px; padding-bottom: 140px; display: grid; grid-template-columns: 1fr 2fr; gap: 50px; }
.product-about__copy h2 { margin: 0 0 36px; font-size: clamp(46px, 5.4vw, 78px); line-height: .98; }
.product-about__copy > p { max-width: 690px; color: #5e635d; font-size: 16px; line-height: 1.8; }
.detail-list { margin-top: 58px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.detail-list div { padding: 25px 22px 25px 0; border-bottom: 1px solid var(--line); }
.detail-list span { display: block; margin-bottom: 10px; color: #858a84; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.detail-list strong { font-family: var(--display); font-size: 23px; font-weight: 500; }
.product-gallery { padding-bottom: 140px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.product-gallery img { height: 720px; object-fit: cover; }
.product-gallery img:only-child { grid-column: span 2; width: 65%; margin: 0 auto; }
.product-note { background: var(--cream); padding-top: 110px; padding-bottom: 110px; display: grid; grid-template-columns: 1fr 2fr; gap: 50px; }
.product-note h2 { margin: 0 0 30px; font-size: clamp(42px, 5vw, 70px); line-height: 1; }
.product-note p { max-width: 650px; color: #5e635d; line-height: 1.8; }
.mini-cta { padding: 120px clamp(24px, 5.5vw, 88px); background: var(--ink); color: white; text-align: center; }
.mini-cta h2 { margin: 0 auto 40px; max-width: 950px; font-size: clamp(48px, 6.4vw, 92px); line-height: .95; }

.story-grid { padding-top: 120px; padding-bottom: 140px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-grid img { height: 760px; object-fit: cover; }
.story-copy h2 { margin: 0 0 35px; font-size: clamp(48px, 5.8vw, 82px); line-height: .98; }
.story-copy p { color: #5d625c; line-height: 1.85; }
.process { padding-top: 120px; padding-bottom: 140px; background: var(--cream); }
.process > h2 { max-width: 900px; margin: 0 0 70px; font-size: clamp(48px, 6vw, 86px); line-height: .98; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.process-grid article { padding: 30px 35px 20px 0; }
.process-grid span { color: #858a84; font-size: 10px; }
.process-grid h3 { margin: 45px 0 18px; font-family: var(--display); font-size: 30px; font-weight: 500; }
.process-grid p { color: #626760; font-size: 14px; line-height: 1.75; }

.faq-wrap { padding-top: 105px; padding-bottom: 140px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 27px 0; display: flex; justify-content: space-between; gap: 30px; border: 0; background: none; color: var(--ink); text-align: left; font-family: var(--display); font-size: clamp(23px, 2.5vw, 34px); cursor: pointer; }
.faq-item button span { font-family: var(--sans); transition: transform .25s; }
.faq-item.open button span { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { max-width: 760px; margin: 0; padding: 0 0 30px; color: #626760; line-height: 1.8; }


.contact-page { padding: 180px clamp(24px, 5.5vw, 88px) 130px; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 145px); background: var(--cream); }
.contact-intro h1 { margin: 30px 0 35px; font-family: var(--display); font-size: clamp(58px, 7vw, 105px); font-weight: 500; line-height: .9; letter-spacing: -.05em; }
.contact-intro h1 em { color: var(--sage); font-weight: 500; }
.contact-intro > p { color: #60655f; line-height: 1.8; }
.contact-details { margin-top: 65px; display: flex; flex-direction: column; gap: 13px; font-family: var(--display); font-size: 22px; }
.enquiry-form { padding: 48px; background: var(--paper); }
.enquiry-form h2 { margin: 0 0 45px; font-size: 38px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 25px; }
.field label { display: block; margin-bottom: 9px; color: #6f746d; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--ink); font: 14px var(--sans); }
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--ink); }
.form-submit { margin-top: 15px; padding: 17px 23px; border: 0; border-radius: 50px; background: var(--ink); color: white; font: 10px var(--sans); text-transform: uppercase; letter-spacing: .14em; cursor: pointer; transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease; }
.form-status { margin: 18px 0 0; color: #667562; font-size: 12px; line-height: 1.5; }

.enquiry-drawer { position: fixed; z-index: 90; inset: 0; visibility: hidden; pointer-events: none; }
.enquiry-drawer.open { visibility: visible; pointer-events: auto; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(12,17,13,.46); opacity: 0; transition: opacity .28s ease; }
.enquiry-drawer.open .drawer-backdrop { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; width: min(520px, 100%); height: 100%; overflow-y: auto; padding: 34px clamp(24px, 4vw, 46px); background: var(--paper); color: var(--ink); transform: translateX(100%); transition: transform .35s cubic-bezier(.22,.61,.36,1); box-shadow: -22px 0 60px rgba(9,13,10,.2); }
.enquiry-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 42px; }
.drawer-head h2 { margin: 9px 0 0; font-size: 42px; line-height: 1; }
.drawer-form .field-row { grid-template-columns: 1fr; gap: 0; }
.drawer-form .form-submit { width: 100%; }
.drawer-full-link { display: inline-block; margin-top: 18px; color: #697067; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }

.sticky-availability { position: fixed; z-index: 45; left: 50%; bottom: 22px; display: flex; align-items: center; gap: 18px; padding: 10px 10px 10px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(23,27,24,.92); color: white; box-shadow: 0 18px 44px rgba(10,14,11,.26); transform: translate(-50%, 120%); opacity: 0; transition: transform .32s ease, opacity .32s ease; backdrop-filter: blur(12px); }
.sticky-availability.visible { transform: translate(-50%, 0); opacity: 1; }
.sticky-availability span { white-space: nowrap; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.72); }
.sticky-availability strong { white-space: nowrap; font-family: var(--display); font-size: 22px; font-weight: 500; }
.sticky-availability a, .sticky-availability button { min-height: 38px; border: 0; border-radius: 999px; background: white; color: var(--ink); padding: 0 17px; font: 10px var(--sans); text-transform: uppercase; letter-spacing: .12em; cursor: pointer; }
.sticky-availability a { display: inline-flex; align-items: center; }
.sticky-availability button { background: var(--sage); }

.product-gallery img { cursor: zoom-in; }
.lightbox { position: fixed; z-index: 95; inset: 0; display: grid; place-items: center; padding: clamp(18px, 4vw, 54px); background: rgba(13,17,14,.88); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { width: min(1040px, 100%); max-height: 86svh; object-fit: contain; box-shadow: 0 22px 80px rgba(0,0,0,.32); }
.lightbox-close { position: absolute; top: 24px; right: 24px; border-color: rgba(255,255,255,.42); color: white; }
.lightbox-close:hover { background: white; color: var(--ink); }

@media (max-width: 900px) {
  .product-hero { grid-template-columns: 1fr; }
  .product-hero__media { min-height: 680px; }
  .product-about, .product-note, .story-grid, .contact-page { grid-template-columns: 1fr; }
  .product-about, .product-note { gap: 55px; }
  .story-grid img { height: 620px; }
}
@media (max-width: 640px) {
  .page-hero { padding-top: 145px; padding-bottom: 75px; }
  .page-hero h1 { font-size: 15vw; }
  .page-hero__foot { flex-direction: column; margin-top: 45px; }
  .page-hero__foot p { margin: 0; }
  .service-index__grid { grid-template-columns: 1fr; }
  .index-card, .index-card:nth-child(3n) { grid-column: auto; min-height: 510px; }
  .product-hero__copy { padding: 145px 24px 75px; }
  .product-hero h1 { margin-top: 55px; font-size: 16vw; }
  .product-hero__media { min-height: 560px; }
  .product-about { padding-top: 90px; padding-bottom: 90px; }
  .detail-list { grid-template-columns: 1fr; }
  .product-gallery { grid-template-columns: 1fr; padding-bottom: 90px; }
  .product-gallery img, .product-gallery img:only-child { grid-column: auto; width: 100%; height: 520px; }
  .product-note { padding-top: 80px; padding-bottom: 80px; }
  .mini-cta { padding-top: 90px; padding-bottom: 90px; }
  .story-grid { padding-top: 85px; gap: 50px; }
  .story-grid img { height: 530px; }
  .process-grid, .reviews-grid { grid-template-columns: 1fr; }
  .process-grid article { border-top: 1px solid var(--line); }
  .quote-card:nth-child(even) { padding-left: 0; border-left: 0; }
  .contact-page { padding-top: 140px; }
  .enquiry-form { padding: 30px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .review-controls { grid-column: 1; justify-self: start; margin: -32px 0 36px; }
  .sticky-availability { left: 14px; right: 14px; bottom: 14px; justify-content: space-between; transform: translateY(120%); }
  .sticky-availability.visible { transform: translateY(0); }
  .sticky-availability span { display: none; }
  .sticky-availability strong { font-size: 18px; }
  .sticky-availability a { display: none; }
  .drawer-panel { width: 100%; }
}

@media (hover: hover) {
  .header-cta, .footer-enquire, .text-link, .form-submit, .button-light, .button-sage { will-change: transform; }
  .header-cta:hover { opacity: 1; color: var(--ink); border-color: transparent; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(10,14,11,.16); }
  .header-cta:hover:before { transform: scaleX(1); transform-origin: left; }
  .scrolled .header-cta:hover, .inner-page .header-cta:hover { color: white; }
  .header-cta:hover .header-cta__icon { background: var(--ink); color: white; transform: translate(2px,-2px) rotate(45deg); }
  .scrolled .header-cta:hover .header-cta__icon, .inner-page .header-cta:hover .header-cta__icon { background: white; color: var(--ink); }
  .button-light:hover { background: var(--sage); color: var(--ink); transform: translateY(-3px); box-shadow: 0 16px 35px rgba(0,0,0,.22); }
  .button-light:hover span { transform: translate(2px,-2px) rotate(45deg); }
  .button-sage:hover { background: white; transform: translateY(-3px); box-shadow: 0 16px 35px rgba(0,0,0,.22); }
  .form-submit:hover { background: var(--sage); color: var(--ink); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(20,25,21,.18); }
  .text-link, .footer-enquire { transition: color .3s ease, transform .3s ease; }
  .text-link span, .footer-enquire span { display: inline-block; transition: transform .3s ease; }
  .text-link:hover, .footer-enquire:hover { color: var(--sage); transform: translateY(-2px); }
  .text-link:hover span, .footer-enquire:hover span { transform: translateX(7px); }
}

@media (max-width: 900px) {
  .site-header.scrolled, .inner-page .site-header { background: var(--paper); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .menu-open .site-header .brand { position: relative; z-index: 61; color: white; }
  .menu-open .site-header .menu-toggle { color: white; }
  .menu-open .site-header { background: transparent; border-color: transparent; }
}

@media (max-width: 760px) {
  .service-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card, .service-card--wide { height: min(128vw, 560px); }
  .service-card:nth-child(2), .service-card:nth-child(4) { margin-top: 0; }
  .all-services { padding-top: 76px; padding-bottom: 100px; gap: 35px; }
  .service-preview { display: none; }
  .experience { grid-template-columns: 1fr; }
  .experience-media { min-height: 600px; }
  .experience-stamp { right: 22px; bottom: -58px; }
  .experience-copy { padding: 120px 28px 90px; }
  .footer-top, .footer-links { grid-template-columns: 1fr; }
  .footer-enquire { justify-self: start; }
  .service-index__grid { grid-template-columns: 1fr; }
  .index-card, .index-card:nth-child(3n) { grid-column: auto; min-height: min(125vw, 610px); }
  .product-gallery { grid-template-columns: 1fr; padding-bottom: 90px; }
  .product-gallery img, .product-gallery img:only-child { grid-column: auto; width: 100%; height: min(128vw, 620px); }
  .detail-list { grid-template-columns: 1fr; }
  .process-grid, .reviews-grid { grid-template-columns: 1fr; }
  .quote-card:nth-child(even) { padding-left: 0; border-left: 0; }
}

@media (hover: none) {
  .service-links a:hover { padding-left: 4px; }
  .service-links a:hover .service-link-label { transform: none; }
  .service-links a:hover .service-link-arrow { background: transparent; color: inherit; transform: none; }
  .service-links a:hover .service-preview { opacity: 0; }
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}


/* Darker hero video overlay */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12,18,14,.84) 0%, rgba(12,18,14,.55) 54%, rgba(12,18,14,.45) 100%),
    linear-gradient(0deg, rgba(10,12,10,.62), transparent 48%);
}

/* Keep hero text above overlay */
.hero-content,
.hero-proof {
  z-index: 2;
}