:root {
  --ink: #12211f;
  --ink-deep: #0b1816;
  --cream: #f5f0e7;
  --paper: #fffdf8;
  --sand: #d5a968;
  --sand-light: #ead5b3;
  --mint: #96c9b8;
  --line: rgba(18, 33, 31, 0.16);
  --muted: #65716d;
  --display: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--sand-light);
  color: var(--ink-deep);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: white;
  color: var(--ink);
  border-radius: 5px;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: white;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  background: rgba(11, 24, 22, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50% 50% 50% 8px;
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
}

.brand-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-dot {
  color: var(--sand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 500;
}

.nav-links a {
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.header-inner > .button {
  justify-self: end;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  gap: 16px;
  padding-inline: 18px;
}

.button-light {
  background: #f7f2e9;
  color: var(--ink-deep);
}

.button-light:hover {
  background: white;
}

.button-primary {
  background: var(--sand);
  color: var(--ink-deep);
}

.button-primary:hover {
  background: #e0b877;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 770px;
  padding: 176px 0 0;
  background: var(--ink);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -140px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 95px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.75fr);
  align-items: center;
  gap: 88px;
}

.eyebrow,
.section-label {
  margin: 0 0 30px;
  color: var(--sand);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.2vw, 91px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero h1 em,
.statement h2 em,
.process-heading h2 em {
  color: var(--sand-light);
  font-weight: 400;
}

.hero-intro {
  max-width: 560px;
  margin: 32px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 37px;
}

.text-link {
  padding-block: 9px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  font-size: 13px;
  font-weight: 600;
}

.text-link span {
  margin-left: 12px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 26px 0 0;
  color: rgba(255,255,255,0.48);
  font-size: 12px;
}

.pulse {
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  opacity: 0.4;
}

.hero-visual {
  position: relative;
  min-height: 490px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun-orbit {
  position: absolute;
  top: 0;
  right: -65px;
  width: 360px;
  height: 360px;
  background: var(--sand);
  border-radius: 50%;
  opacity: 0.92;
}

.sun-orbit::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(18,33,31,0.2);
  border-radius: 50%;
}

.brief-card {
  position: relative;
  z-index: 2;
  width: min(390px, 100%);
  min-height: 438px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: rgba(247,242,233,0.96);
  box-shadow: 0 40px 80px rgba(2,9,8,0.28);
  color: var(--ink);
  transform: rotate(2.3deg);
}

.brief-topline,
.brief-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brief-topline {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.brief-id {
  color: #80908a;
}

.brief-content {
  flex: 1;
  padding-top: 42px;
}

.brief-kicker {
  margin: 0 0 12px;
  color: #8b6d43;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.brief-card h2 {
  max-width: 310px;
  margin: 0;
  font-family: var(--display);
  font-size: 43px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.brief-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 30px;
}

.brief-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: #4a5a55;
  font-size: 10px;
}

.brief-footer {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.brief-footer svg {
  width: 42px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.2;
}

.skyline {
  position: absolute;
  z-index: 3;
  right: -85px;
  bottom: -5px;
  width: 560px;
  fill: none;
  stroke: rgba(255,255,255,0.18);
  stroke-width: 1.2;
}

.hero-foot {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-foot div {
  padding: 23px 0;
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-foot div + div {
  padding-left: 36px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.hero-foot span {
  margin-right: 18px;
  color: var(--sand);
}

.section {
  padding: 130px 0;
}

.statement {
  background: var(--paper);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 80px;
}

.section-label {
  color: #937348;
}

.statement h2,
.section-heading h2,
.principles-copy h2,
.enquiry-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(45px, 5vw, 67px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.statement h2 {
  max-width: 820px;
}

.statement h2 em {
  color: #9f7540;
}

.statement-copy {
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  margin-top: 47px;
  padding-top: 31px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.statement-copy p {
  margin: 0;
}

.options {
  background: var(--cream);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 64px;
}

.section-heading > p:last-child {
  max-width: 590px;
  margin: 25px 0 0;
  color: var(--muted);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.option-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 27px 28px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.25);
  transition: background 220ms ease, transform 220ms ease;
}

.option-card:hover {
  z-index: 2;
  background: var(--paper);
  transform: translateY(-7px);
}

.option-card-accent {
  background: var(--ink);
  color: white;
}

.option-card-accent:hover {
  background: #1a2d2a;
}

.option-number {
  color: #9c8870;
  font-size: 10px;
}

.option-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-top: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.8;
}

.option-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.option-card h3 {
  margin: 30px 0 10px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.option-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.option-card-accent p {
  color: rgba(255,255,255,0.58);
}

.option-card a {
  margin-top: auto;
  padding-top: 30px;
  font-size: 12px;
  font-weight: 600;
}

.option-card a span {
  float: right;
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  color: white;
}

.process-lines {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: linear-gradient(90deg, transparent 49.85%, rgba(255,255,255,0.16) 50%, transparent 50.15%), linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 33.333% 100%, 100% 80px;
}

.process-heading {
  position: relative;
  max-width: 740px;
}

.section-label-light {
  color: var(--sand);
}

.process-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 5.4vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
  margin: 90px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 23px;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 62px;
  width: calc(100% + 58px - 62px);
  border-top: 1px dashed rgba(255,255,255,0.17);
}

.step-marker {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--ink-deep);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
}

.step-marker span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: var(--sand);
  border-radius: 50%;
  color: var(--ink-deep);
  font-size: 11px;
  font-weight: 600;
}

.step-meta {
  margin: 3px 0 19px;
  color: var(--sand);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-list h3 {
  margin: 0 0 13px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

.process-list p:last-child {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.principles {
  background: var(--paper);
}

.principles-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: 110px;
}

.principles-art {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  background: #d7aa68;
}

.principles-art::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(18,33,31,0.24);
}

.arch {
  position: absolute;
  bottom: -10px;
  border: 1px solid rgba(18,33,31,0.42);
  border-bottom: 0;
  border-radius: 180px 180px 0 0;
}

.arch-one {
  left: 65px;
  width: 260px;
  height: 460px;
}

.arch-two {
  right: 52px;
  width: 175px;
  height: 315px;
  background: var(--ink);
}

.art-disc {
  position: absolute;
  top: 86px;
  right: 30px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(18,33,31,0.25);
  border-radius: 50%;
}

.art-label {
  position: absolute;
  z-index: 2;
  top: 50px;
  left: 50px;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.principles-copy h2 {
  max-width: 570px;
}

.principles-lead {
  max-width: 560px;
  margin: 29px 0 42px;
  color: var(--muted);
}

.principles-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.principles-copy li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.principles-copy li > span {
  padding-top: 2px;
  color: #a28663;
  font-size: 10px;
}

.principles-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.principles-copy li p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.enquiry {
  background: var(--cream);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
  align-items: start;
  gap: 105px;
}

.enquiry-intro {
  position: sticky;
  top: 120px;
}

.enquiry-intro > p:not(.section-label) {
  max-width: 470px;
  margin: 30px 0;
  color: var(--muted);
}

.enquiry-promise {
  max-width: 430px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #596662;
  font-size: 12px;
}

.enquiry-promise svg {
  width: 24px;
  height: 24px;
  padding: 5px;
  border: 1px solid #789b8f;
  border-radius: 50%;
  fill: none;
  stroke: #426c5e;
  stroke-width: 1.8;
}

.enquiry-form {
  padding: 42px;
  background: var(--paper);
  border: 1px solid rgba(18,33,31,0.1);
  box-shadow: 0 22px 70px rgba(41,45,38,0.08);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.form-heading span:first-child {
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-heading span:last-child {
  color: #8b9491;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.field > span {
  display: block;
  margin-bottom: 8px;
  color: #465450;
  font-size: 11px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d9d8d2;
  border-radius: 2px;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
  padding: 14px 15px 26px;
  line-height: 1.55;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a7ada9;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #73978a;
  box-shadow: 0 0 0 3px rgba(115,151,138,0.12);
}

.field small {
  position: absolute;
  right: 11px;
  bottom: 7px;
  color: #a0a7a4;
  font-size: 9px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin: 3px 0 24px;
  color: #66716e;
  font-size: 11px;
  cursor: pointer;
}

.checkbox-field input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.captcha-wrap {
  min-height: 65px;
  margin-bottom: 22px;
}

.button-submit {
  width: 100%;
  min-height: 58px;
  justify-content: space-between;
  background: var(--ink);
  color: white;
}

.button-submit:hover {
  background: #203530;
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-submit svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.form-status {
  display: none;
  margin: 15px 0 0;
  padding: 11px 13px;
  border-radius: 2px;
  font-size: 12px;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: #e5f1eb;
  color: #285e49;
}

.form-status.error {
  background: #f8e7e3;
  color: #873c31;
}

.form-fineprint {
  margin: 15px 0 0;
  color: #969d99;
  font-size: 9px;
  text-align: center;
}

.trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.closing {
  padding: 95px 0;
  background: var(--sand);
  color: var(--ink-deep);
}

.closing-inner {
  display: grid;
  grid-template-columns: 0.55fr 1.25fr auto;
  align-items: center;
  gap: 45px;
}

.closing p {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
}

.site-footer {
  padding: 72px 0 24px;
  background: var(--ink-deep);
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 58px;
}

.brand-footer .brand-mark {
  border-color: var(--sand);
  color: var(--sand);
}

.footer-blurb {
  max-width: 440px;
  justify-self: end;
}

.footer-blurb p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.55);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.25;
}

.footer-blurb a {
  color: var(--sand-light);
  font-size: 12px;
}

.privacy-note {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.privacy-note summary {
  width: fit-content;
  color: rgba(255,255,255,0.66);
  font-size: 11px;
  cursor: pointer;
}

.privacy-note p {
  max-width: 860px;
  margin: 18px 0 2px;
  color: rgba(255,255,255,0.42);
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: rgba(255,255,255,0.58);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 400px; gap: 36px; }
  .hero h1 { font-size: clamp(55px, 7vw, 75px); }
  .option-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { gap: 62px; }
  .enquiry-grid { gap: 55px; }
  .closing-inner { grid-template-columns: 1fr auto; }
  .closing-inner p { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .nav-links { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero { padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 650px; }
  .hero-visual { min-height: 470px; margin-top: 20px; }
  .sun-orbit { right: calc(50% - 270px); }
  .brief-card { width: 380px; }
  .skyline { right: calc(50% - 350px); }
  .hero-foot { margin-top: 35px; }
  .section { padding: 92px 0; }
  .statement-grid { grid-template-columns: 1fr; gap: 15px; }
  .process-list { grid-template-columns: 1fr; gap: 48px; }
  .process-list li:not(:last-child)::after { top: 61px; bottom: -48px; left: 30px; width: 1px; border-top: 0; border-left: 1px dashed rgba(255,255,255,0.17); }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-art { min-height: 510px; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .enquiry-intro { position: static; }
  .closing-inner { grid-template-columns: 1fr; }
  .closing-inner p { grid-column: auto; }
  .closing-inner .button { width: fit-content; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  .header-inner { height: 72px; }
  .brand-name { font-size: 20px; }
  .brand-mark { width: 32px; height: 32px; }
  .header-inner .button { min-height: 38px; padding-inline: 13px; }
  .header-inner .button span { display: none; }
  .hero { min-height: auto; padding-top: 125px; }
  .hero h1 { font-size: clamp(49px, 15.5vw, 68px); }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .text-link { width: fit-content; }
  .hero-visual { min-height: 425px; }
  .brief-card { width: calc(100% - 24px); min-height: 385px; padding: 21px; }
  .brief-card h2 { font-size: 37px; }
  .sun-orbit { width: 290px; height: 290px; right: -50px; }
  .skyline { right: -115px; width: 510px; }
  .hero-foot { grid-template-columns: 1fr; padding: 13px 0; }
  .hero-foot div { padding: 10px 0; }
  .hero-foot div + div { padding-left: 0; border-left: 0; }
  .section { padding: 78px 0; }
  .statement h2, .section-heading h2, .principles-copy h2, .enquiry-intro h2 { font-size: 44px; }
  .statement-copy { grid-template-columns: 1fr; gap: 20px; }
  .option-grid { grid-template-columns: 1fr; }
  .option-card { min-height: 365px; }
  .process-list li { grid-template-columns: 52px 1fr; gap: 17px; }
  .step-marker { width: 52px; height: 52px; }
  .process-list li:not(:last-child)::after { top: 52px; left: 25px; }
  .principles-art { min-height: 420px; }
  .arch-one { left: 35px; width: 210px; height: 350px; }
  .arch-two { right: 33px; width: 145px; height: 260px; }
  .art-disc { width: 140px; height: 140px; }
  .enquiry-form { padding: 28px 20px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .closing { padding: 72px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-blurb { justify-self: start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}
