:root {
  --ink: #151515;
  --paper: #f7f5f1;
  --white: #ffffff;
  --stone: #e8e3da;
  --muted: #68635c;
  --line: rgba(21, 21, 21, 0.16);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', Arial, Helvetica, sans-serif;
  --shell: 1320px;
}

* { 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; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(var(--shell), calc(100% - 8rem)); margin-inline: auto; }
.section-pad { padding-block: clamp(5rem, 8vw, 8rem); }
.content-narrow { max-width: 36rem; }

.announcement {
  min-height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 5.9rem;
  display: grid;
  grid-template-columns: 22rem 1fr 9.5rem;
  align-items: center;
  padding-inline: 3.6rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}
.brand { display: block; width: min(19rem, 100%); }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(1.2rem, 2.3vw, 2.4rem); }
.desktop-nav a,
.menu-button {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.desktop-nav a,
.text-link { border-bottom: 1px solid transparent; transition: border-color 160ms ease; }
.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible { border-bottom-color: currentColor; }
.menu-button,
.mobile-nav { display: none; }

.button {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.55rem;
  border: 1px solid var(--ink);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover,
.button--dark:focus-visible { background: #383838; border-color: #383838; }
.button--light-solid { background: var(--white); color: var(--ink); border-color: var(--white); }
.button--light-solid:hover,
.button--light-solid:focus-visible { background: #e7e2d9; border-color: #e7e2d9; }
.button--light-outline { color: var(--white); border-color: var(--white); }
.button--light-outline:hover,
.button--light-outline:focus-visible { background: var(--white); color: var(--ink); }

.hero { position: relative; min-height: 45rem; display: grid; overflow: hidden; background: #5d584f; }
.hero__image,
.hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center; }
.hero__shade { z-index: 1; background: rgba(12, 11, 9, 0.38); }
.hero__content { position: relative; z-index: 2; align-self: center; color: var(--white); }
.eyebrow {
  margin: 0 0 1.45rem;
  color: inherit;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}
.eyebrow--dark { color: var(--ink); }
.eyebrow--centred { text-align: center; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
.hero h1 {
  max-width: 44rem;
  margin-bottom: 1.45rem;
  font-size: clamp(3.4rem, 5.2vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hero__intro {
  max-width: 29rem;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.55;
}
.button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-bottom: 1px solid var(--line); }
.trust-strip article { padding: 1.8rem 1.5rem; border-right: 1px solid var(--line); text-align: center; }
.trust-strip article:last-child { border-right: 0; }
.trust-strip h2 { margin-bottom: 0.35rem; font-size: 1.25rem; }
.trust-strip p { margin-bottom: 0; color: var(--muted); font-size: 0.58rem; letter-spacing: 0.11em; text-transform: uppercase; }

.feature-split { min-height: 43rem; display: grid; grid-template-columns: 1fr 1fr; background: var(--paper); }
.feature-split__image { min-height: 36rem; }
.image-frame { overflow: hidden; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.feature-split__copy { display: flex; align-items: center; padding-inline: clamp(3rem, 8vw, 8rem); }
.feature-split h2,
.services h2,
.projects h2,
.process h2,
.experience h2,
.final-cta h2 { font-size: clamp(3rem, 4.2vw, 4.6rem); line-height: 1.02; letter-spacing: -0.035em; }
.body-copy { color: #57534d; font-family: var(--serif); font-size: 1.12rem; line-height: 1.75; }

.services { background: var(--stone); }
.section-heading { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 7rem; align-items: end; margin-bottom: 4rem; }
.section-heading__intro { max-width: 36rem; margin: 0 0 0.3rem auto; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--paper); border: 1px solid var(--line); }
.service-card { min-height: 22rem; display: flex; flex-direction: column; justify-content: space-between; padding: 3rem; border-right: 1px solid var(--line); }
.service-card:last-child { border-right: 0; }
.index { font-family: var(--serif); font-size: 0.95rem; font-style: italic; }
.service-card h3,
.project-card h3,
.quote-steps h3,
.process-grid h3,
.experience-grid h3 { margin-bottom: 0.7rem; font-size: 2rem; line-height: 1.05; }
.service-card p,
.quote-steps p,
.process-grid p,
.experience-grid p { margin-bottom: 0; color: var(--muted); font-size: 0.78rem; line-height: 1.65; }

.projects { background: var(--white); }
.projects__heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; }
.text-link { margin-bottom: 0.5rem; padding-bottom: 0.45rem; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.project-grid { display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr; gap: 0.9rem; }
.project-card { position: relative; min-height: 35rem; overflow: hidden; background: #d6d0c6; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.project-card:hover img { transform: scale(1.02); }
.project-card__shade { position: absolute; inset: 52% 0 0; background: rgba(0, 0, 0, 0.43); }
.project-card__label { position: absolute; z-index: 1; left: 2rem; right: 2rem; bottom: 1.8rem; color: var(--white); }
.project-card__label p { margin-bottom: 0.55rem; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.project-card__label h3 { margin-bottom: 0; }

.quote-section { min-height: 39rem; display: grid; grid-template-columns: 0.82fr 1.18fr; background: var(--ink); color: var(--white); }
.quote-section__intro { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-inline: clamp(3.5rem, 7vw, 7rem); border-right: 1px solid rgba(255, 255, 255, 0.16); }
.quote-section h2 { margin-bottom: 1.35rem; font-size: clamp(3.2rem, 4.8vw, 5.2rem); line-height: 0.98; letter-spacing: -0.04em; }
.quote-section__intro > p:not(.eyebrow) { max-width: 31rem; margin-bottom: 2rem; color: rgba(255, 255, 255, 0.7); font-family: var(--serif); font-size: 1.12rem; line-height: 1.7; }
.quote-steps { display: grid; grid-template-columns: repeat(3, 1fr); }
.quote-steps article { display: flex; flex-direction: column; justify-content: space-between; padding: 5.2rem 2.3rem; border-right: 1px solid rgba(255, 255, 255, 0.16); }
.quote-steps article:last-child { border-right: 0; }
.quote-steps .index { color: rgba(255, 255, 255, 0.48); }
.quote-steps p { color: rgba(255, 255, 255, 0.62); }

.process { background: var(--paper); }
.process > .shell > h2 { max-width: 44rem; margin-bottom: 4.5rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-grid article { min-height: 17rem; padding: 2.4rem 2rem; border-right: 1px solid var(--line); }
.process-grid article:last-child { border-right: 0; }
.process-grid .index { display: block; margin-bottom: 4.5rem; }

.feature-split--reverse .feature-split__image { order: 2; }
.feature-split--reverse .feature-split__copy { order: 1; background: var(--white); }

.experience { background: var(--stone); text-align: center; }
.experience h2 { max-width: 52rem; margin: 0 auto 3.5rem; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: left; }
.experience-grid article { min-height: 15rem; padding: 2.5rem; background: rgba(255, 255, 255, 0.72); }
.experience-grid .index { display: block; margin-bottom: 3rem; }

.final-cta { min-height: 34rem; display: flex; align-items: center; justify-content: center; background: var(--ink); color: var(--white); text-align: center; }
.final-cta .content-narrow { display: flex; flex-direction: column; align-items: center; }
.final-cta p:not(.eyebrow) { max-width: 36rem; margin-bottom: 2rem; color: rgba(255, 255, 255, 0.7); font-family: var(--serif); font-size: 1.18rem; line-height: 1.65; }

.site-footer { padding: 4.5rem 0 2.2rem; background: var(--white); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.7fr 0.8fr 0.7fr; gap: 4rem; }
.footer-brand img { width: min(19rem, 100%); margin-bottom: 1.5rem; }
.footer-brand p { max-width: 22rem; color: var(--muted); font-size: 0.72rem; line-height: 1.7; }
.footer-grid h2 { margin-bottom: 1.25rem; font-family: var(--sans); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-grid a,
.footer-grid span { display: block; margin-bottom: 0.7rem; color: var(--muted); font-size: 0.72rem; line-height: 1.5; }
.footer-grid a:hover,
.footer-grid a:focus-visible { color: var(--ink); }
.footer-meta { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: #87827a; font-size: 0.56rem; letter-spacing: 0.08em; text-transform: uppercase; }

:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

@media (max-width: 1100px) {
  .shell { width: min(var(--shell), calc(100% - 4rem)); }
  .site-header { grid-template-columns: 18rem 1fr 8.7rem; padding-inline: 2rem; }
  .desktop-nav { gap: 1.15rem; }
  .section-heading { gap: 3.5rem; }
  .quote-section { grid-template-columns: 1fr; }
  .quote-section__intro { min-height: 31rem; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .quote-steps article { min-height: 25rem; }
}

@media (max-width: 960px) {
  .shell { width: min(var(--shell), calc(100% - 2.4rem)); }
  .announcement { font-size: 0.54rem; }
  .site-header { min-height: 5rem; grid-template-columns: 1fr auto; padding-inline: 1.25rem; }
  .brand { width: 13.5rem; }
  .desktop-nav,
  .header-quote { display: none; }
  .menu-button { display: block; padding: 0.7rem 0; border: 0; border-bottom: 1px solid var(--ink); background: transparent; color: var(--ink); }
  .mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: grid;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a:not(.button) { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
  .mobile-nav .button { margin-top: 1rem; }

  .hero { min-height: 42rem; }
  .hero__image { object-position: 62% center; }
  .hero__shade { background: rgba(12, 11, 9, 0.5); }
  .hero h1 { font-size: clamp(3rem, 11vw, 4.5rem); }
  .hero__intro { max-width: 25rem; font-size: 1.05rem; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip article:nth-child(2) { border-right: 0; }
  .trust-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split__image { min-height: 31rem; }
  .feature-split__copy { min-height: 34rem; padding-inline: 2rem; }
  .feature-split--reverse .feature-split__image { order: 1; }
  .feature-split--reverse .feature-split__copy { order: 2; }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .section-heading__intro { margin-left: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 15rem; padding: 2rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .projects__heading { align-items: flex-start; flex-direction: column; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: min(34rem, 116vw); }
  .quote-steps { grid-template-columns: 1fr; }
  .quote-steps article { min-height: auto; padding: 3rem 2rem; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .quote-steps .index { margin-bottom: 4rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article:nth-child(2) { border-right: 0; }
  .process-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .experience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .section-pad { padding-block: 4.6rem; }
  .button-row { align-items: stretch; flex-direction: column; max-width: 16rem; }
  .button-row .button { width: 100%; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip article:last-child { border-bottom: 0; }
  .feature-split__image { min-height: 25rem; }
  .feature-split h2,
  .services h2,
  .projects h2,
  .process h2,
  .experience h2,
  .final-cta h2 { font-size: 2.75rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 14rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid article:last-child { border-bottom: 0; }
  .experience-grid article { min-height: 13rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: auto; }
  .footer-meta { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
