:root {
  --ink: #101412;
  --ink-soft: #171c19;
  --paper: #f4f1e9;
  --paper-deep: #e9e4d9;
  --sage: #6f8176;
  --sage-deep: #3c5045;
  --sand: #c6ad83;
  --line-dark: rgba(16, 20, 18, .16);
  --line-light: rgba(255, 255, 255, .15);
  --sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
section { scroll-margin-top: 82px; }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 10px 14px; background: white; color: var(--ink); transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  height: 94px;
  padding: 0 clamp(24px, 4.4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  background: linear-gradient(180deg, rgba(5, 8, 6, .58), rgba(5, 8, 6, 0));
}

.wordmark { display: inline-flex; width: max-content; flex-direction: column; gap: 4px; text-decoration: none; text-transform: uppercase; letter-spacing: .13em; }
.wordmark strong { font-size: 12px; font-weight: 700; }
.wordmark span { color: rgba(255, 255, 255, .62); font-size: 7px; letter-spacing: .2em; }

nav { display: flex; align-items: center; gap: 34px; }
nav a { position: relative; padding: 9px 0; color: rgba(255, 255, 255, .76); text-decoration: none; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
nav a::after { content: ""; position: absolute; right: 0; bottom: 2px; left: 0; height: 1px; background: var(--sand); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
nav a:hover { color: white; }
nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.header-enquiry { padding-bottom: 5px; border-bottom: 1px solid rgba(255, 255, 255, .48); text-decoration: none; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: border-color .2s ease; }
.header-enquiry:hover { border-color: var(--sand); }

.logo-disc { position: relative; display: block; flex: 0 0 auto; overflow: hidden; border-radius: 50%; background: #111; }
.logo-disc img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; transform: scale(2.05); }
.logo-disc--header { width: 50px; height: 50px; border: 1px solid rgba(255, 255, 255, .55); box-shadow: 0 5px 24px rgba(0, 0, 0, .22); }

.hero { position: relative; height: 100svh; min-height: 680px; overflow: hidden; background: #0b0f0d; color: white; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: -2%; width: 104%; height: 104%; max-width: none; object-fit: cover; object-position: center; opacity: 0; transform: scale(1.025); transition: opacity 1.8s ease, transform 8s linear; }
.hero-slide.is-active { opacity: 1; transform: scale(1.07); }
.hero-shade { z-index: 2; background: linear-gradient(90deg, rgba(4, 7, 5, .78) 0%, rgba(4, 7, 5, .35) 56%, rgba(4, 7, 5, .15) 100%), linear-gradient(0deg, rgba(4, 7, 5, .66) 0%, transparent 55%); }
.hero-content { position: relative; z-index: 3; min-height: 100%; padding: 142px clamp(24px, 6vw, 92px) 44px; display: flex; flex-direction: column; }
.eyebrow { margin: 0; color: var(--sage-deep); font-size: 9px; font-weight: 700; letter-spacing: .21em; text-transform: uppercase; }
.eyebrow--light { color: rgba(255, 255, 255, .68); }
.hero-heading { margin: auto 0; padding: 4vh 0; }
.hero h1 { max-width: 990px; margin: 0; font-family: var(--serif); font-size: clamp(64px, 8.7vw, 138px); font-weight: 400; letter-spacing: -.055em; line-height: .9; transition: opacity .45s ease, transform .45s ease; }
.hero h1.is-changing { opacity: 0; transform: translateY(12px); }
.hero-heading > p { max-width: 580px; margin: 34px 0 0; color: rgba(255, 255, 255, .78); font-size: 16px; line-height: 1.7; }
.hero-buttons { margin-top: 34px; display: flex; align-items: center; gap: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--light { background: var(--paper); color: var(--ink); }
.button--light:hover { background: white; }
.text-link { text-decoration: none; font-size: 11px; font-weight: 700; }
.text-link span { display: inline-block; margin-left: 12px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: rgba(255, 255, 255, .88); }
.hero-meta { padding-top: 22px; display: grid; grid-template-columns: auto auto 1fr; gap: 34px; align-items: center; border-top: 1px solid rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .62); font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero-meta a { justify-self: end; text-decoration: none; }
.hero-meta a span { margin-left: 10px; color: var(--sand); }

.proof-bar { min-height: 122px; padding: 0 clamp(24px, 6vw, 92px); display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; background: var(--paper-deep); border-bottom: 1px solid var(--line-dark); }
.proof-bar div { min-height: 48px; padding-left: 24px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--line-dark); }
.proof-bar div:first-child { padding-left: 0; border-left: 0; }
.proof-bar strong { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.proof-bar span { margin-top: 6px; color: #68716c; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }

.story { position: relative; min-height: 1020px; overflow: clip; background: var(--paper); }
.story-watermark { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.story-watermark__disc { position: sticky; top: calc(50vh - 170px); width: 340px; height: 340px; margin: 0 auto; overflow: hidden; border-radius: 50%; opacity: .055; box-shadow: 0 0 0 1px var(--ink); }
.story-watermark__disc img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; transform: scale(2.02); }
.story-inner { position: relative; z-index: 1; max-width: 1500px; min-height: 1020px; margin: 0 auto; padding: clamp(110px, 12vw, 180px) clamp(24px, 6vw, 92px); display: grid; grid-template-columns: 1.1fr .72fr; gap: 10vw; align-items: center; }
.section-intro h2, .section-heading h2, .portfolio-heading h2, .approach-heading h2, .contact h2 { margin: 22px 0 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.05em; line-height: .96; }
.section-intro h2 { max-width: 780px; font-size: clamp(54px, 7vw, 106px); }
h2 em { color: var(--sage-deep); font-weight: 400; }
.story-copy { align-self: end; max-width: 560px; padding-bottom: 2vw; }
.story-copy p { color: #424b46; font-size: 15px; line-height: 1.8; }
.story-copy .story-lead { color: var(--ink); font-family: var(--serif); font-size: clamp(23px, 2.2vw, 34px); line-height: 1.35; }
.signature { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: 6px; }
.signature span { font-family: var(--serif); font-size: 18px; }
.signature small { color: var(--sage-deep); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }

.services { padding: clamp(100px, 11vw, 170px) clamp(24px, 6vw, 92px); background: var(--ink); color: white; }
.section-heading { max-width: 1500px; margin: 0 auto 90px; display: grid; grid-template-columns: 1fr 1.2fr .65fr; gap: 7vw; align-items: end; }
.section-heading .eyebrow { align-self: start; padding-top: 11px; }
.section-heading h2 { margin: 0; font-size: clamp(48px, 5.9vw, 88px); }
.section-heading h2 em { color: var(--sand); }
.section-heading > p:last-child { margin: 0; color: rgba(255, 255, 255, .58); font-size: 13px; line-height: 1.7; }
.service-grid { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.service-card { min-height: 390px; padding: clamp(30px, 4vw, 62px); display: flex; flex-direction: column; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: background .3s ease; }
.service-card:hover { background: rgba(255, 255, 255, .035); }
.service-card > span { color: var(--sand); font-size: 9px; letter-spacing: .15em; }
.service-card h3 { margin: 34px 0 24px; font-family: var(--serif); font-size: clamp(35px, 4vw, 58px); font-weight: 400; letter-spacing: -.04em; line-height: .98; }
.service-card p { max-width: 520px; margin: 0; color: rgba(255, 255, 255, .63); font-size: 13px; line-height: 1.75; }
.service-card small { margin-top: auto; padding-top: 30px; color: rgba(255, 255, 255, .38); font-size: 8px; letter-spacing: .11em; text-transform: uppercase; }

.portfolio { padding: clamp(100px, 11vw, 170px) clamp(18px, 3.4vw, 54px); background: var(--paper-deep); }
.portfolio-heading { max-width: 1500px; margin: 0 auto 70px; padding: 0 clamp(6px, 2.6vw, 38px); display: flex; justify-content: space-between; gap: 50px; align-items: end; }
.portfolio-heading h2 { font-size: clamp(56px, 7.2vw, 110px); }
.portfolio-heading > p { max-width: 390px; margin: 0 0 8px; color: #626b66; font-size: 12px; line-height: 1.7; }
.portfolio-grid { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.8vw, 28px); align-items: start; }
.portfolio-grid figure { position: relative; margin: 0; overflow: hidden; isolation: isolate; background: #c8c5bb; }
.portfolio-grid figure::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, .22); pointer-events: none; }
.portfolio-grid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.015); transition: opacity 1.4s ease, transform 7.5s linear; }
.portfolio-grid img.is-active { z-index: 1; opacity: 1; transform: scale(1.045); }
.portfolio-grid figure:hover img.is-active { transform: scale(1.06); }
.portfolio-grid .portrait { grid-column: span 5; height: 720px; }
.portfolio-grid .wide { grid-column: span 7; height: 470px; }
.portfolio-grid .standard { grid-column: span 6; height: 520px; }
.portfolio-grid figure:nth-child(3) { margin-top: -222px; }
.portfolio-grid figure:nth-child(6) { height: 700px; }

.approach { padding: clamp(100px, 11vw, 170px) clamp(24px, 6vw, 92px); background: var(--paper); }
.approach-heading { max-width: 1500px; margin: 0 auto 90px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; }
.approach-heading h2 { margin: 0; font-size: clamp(54px, 7vw, 106px); }
.process-list { max-width: 1500px; margin: 0 auto; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.process-list li { padding: 34px 0; display: grid; grid-template-columns: 12% 1fr; border-bottom: 1px solid var(--line-dark); }
.process-list li > span { padding-top: 8px; color: var(--sage-deep); font-size: 9px; letter-spacing: .15em; }
.process-list li > div { display: grid; grid-template-columns: .65fr 1fr; gap: 9vw; align-items: baseline; }
.process-list h3 { margin: 0; font-family: var(--serif); font-size: clamp(30px, 3.2vw, 48px); font-weight: 400; letter-spacing: -.035em; }
.process-list p { max-width: 540px; margin: 0; color: #626b66; font-size: 13px; line-height: 1.7; }

.contact { padding: clamp(100px, 11vw, 170px) clamp(24px, 6vw, 92px) 70px; display: grid; grid-template-columns: 1fr 300px; gap: 10vw; background: var(--sand); color: var(--ink); }
.contact h2 { max-width: 1040px; font-size: clamp(56px, 7.7vw, 116px); }
.contact h2 em { color: #fff8e9; }
.contact-email { display: inline-flex; gap: 20px; margin-top: 60px; padding-bottom: 9px; border-bottom: 1px solid rgba(16, 20, 18, .55); text-decoration: none; font-family: var(--serif); font-size: clamp(19px, 2vw, 30px); }
.contact-email span { transition: transform .2s ease; }
.contact-email:hover span { transform: translateX(5px); }
.contact-aside { align-self: end; }
.contact-aside strong { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.contact-aside p { margin: 8px 0 0; font-size: 12px; line-height: 1.65; }
.socials { margin-top: 38px; display: flex; flex-direction: column; border-top: 1px solid rgba(16, 20, 18, .28); }
.socials a { padding: 13px 0; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(16, 20, 18, .28); text-decoration: none; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.qr-card { margin-top: 35px; display: inline-grid; grid-template-columns: 78px auto; gap: 14px; align-items: center; text-decoration: none; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.qr-card img { width: 78px; height: 78px; object-fit: cover; border-radius: 7px; }

footer { min-height: 160px; padding: 34px clamp(24px, 4.5vw, 72px); display: grid; grid-template-columns: 1fr 1.4fr auto; gap: 40px; align-items: center; background: var(--ink); color: rgba(255, 255, 255, .5); }
.footer-brand { display: flex; align-items: center; gap: 15px; color: white; }
.logo-disc--footer { width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, .3); }
.footer-brand div { display: flex; flex-direction: column; gap: 4px; text-transform: uppercase; }
.footer-brand strong { font-size: 10px; letter-spacing: .13em; }
.footer-brand small { color: rgba(255, 255, 255, .4); font-size: 7px; letter-spacing: .16em; }
footer p { max-width: 610px; margin: 0; font-size: 8px; line-height: 1.65; letter-spacing: .05em; }
footer > a { justify-self: end; text-decoration: none; font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
footer > a span { margin-left: 8px; color: var(--sand); }

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

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .section-heading { grid-template-columns: 1fr 1fr; }
  .section-heading .eyebrow { grid-column: 1 / -1; }
  .section-heading > p:last-child { max-width: 300px; }
  .story-inner { grid-template-columns: 1fr; align-content: center; gap: 70px; }
  .story-copy { margin-left: auto; }
  .contact { grid-template-columns: 1fr 240px; }
}

@media (max-width: 700px) {
  section { scroll-margin-top: 68px; }
  .site-header { height: 74px; padding: 0 18px; }
  .wordmark strong { font-size: 10px; }
  .wordmark span { font-size: 6px; }
  .header-actions { gap: 10px; }
  .header-enquiry { display: none; }
  .logo-disc--header { width: 42px; height: 42px; }

  .hero { min-height: 700px; }
  .hero-content { padding: 112px 22px 28px; }
  .hero h1 { font-size: clamp(56px, 18vw, 82px); line-height: .92; }
  .hero-heading > p { margin-top: 25px; font-size: 14px; line-height: 1.65; }
  .hero-buttons { margin-top: 28px; gap: 19px; }
  .button { min-height: 43px; padding: 0 17px; font-size: 9px; }
  .text-link { font-size: 10px; }
  .hero-meta { grid-template-columns: 1fr auto; gap: 10px; line-height: 1.5; }
  .hero-meta span:nth-child(2) { display: none; }

  .proof-bar { padding: 26px 22px; grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
  .proof-bar div, .proof-bar div:first-child { min-height: 42px; padding-left: 14px; border-left: 1px solid var(--line-dark); }
  .proof-bar strong { font-size: 21px; }
  .proof-bar span { font-size: 7px; line-height: 1.4; }

  .story, .story-inner { min-height: 900px; }
  .story-inner { padding: 100px 22px; gap: 80px; }
  .story-watermark__disc { top: calc(50vh - 115px); width: 230px; height: 230px; }
  .section-intro h2 { font-size: 14.5vw; }
  .story-copy .story-lead { font-size: 24px; }
  .story-copy p { font-size: 14px; }

  .services, .portfolio, .approach { padding-top: 100px; padding-bottom: 100px; }
  .services { padding-right: 22px; padding-left: 22px; }
  .section-heading { margin-bottom: 55px; display: block; }
  .section-heading h2 { margin-top: 25px; font-size: 13vw; }
  .section-heading > p:last-child { margin: 28px 0 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; padding: 34px 28px; }
  .service-card h3 { font-size: 11vw; }

  .portfolio { padding-right: 14px; padding-left: 14px; }
  .portfolio-heading { margin-bottom: 48px; padding: 0 8px; display: block; }
  .portfolio-heading h2 { font-size: 14vw; }
  .portfolio-heading > p { margin-top: 24px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .portfolio-grid .portrait, .portfolio-grid .wide, .portfolio-grid .standard { grid-column: span 1; height: 58vw; margin-top: 0; }
  .portfolio-grid .portrait { height: 78vw; }
  .portfolio-grid .wide { grid-column: span 2; height: 62vw; }
  .portfolio-grid figure:nth-child(6) { height: 78vw; }

  .approach { padding-right: 22px; padding-left: 22px; }
  .approach-heading { margin-bottom: 60px; display: block; }
  .approach-heading h2 { margin-top: 25px; font-size: 13.5vw; }
  .process-list li { padding: 28px 0; grid-template-columns: 13% 1fr; }
  .process-list li > div { display: block; }
  .process-list h3 { font-size: 29px; }
  .process-list p { margin-top: 15px; }

  .contact { padding: 100px 22px 65px; display: block; }
  .contact h2 { font-size: 14vw; }
  .contact-email { margin-top: 40px; font-size: 17px; }
  .contact-aside { margin-top: 90px; }
  .qr-card { grid-template-columns: 68px auto; }
  .qr-card img { width: 68px; height: 68px; }

  footer { padding: 34px 22px; grid-template-columns: 1fr auto; }
  footer p { grid-column: 1 / -1; grid-row: 2; }
}

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