:root {
  --ivory: #f4f0e7;
  --paper: #fbf9f4;
  --limestone: #d4c4aa;
  --limestone-deep: #b6a386;
  --olive: #64705a;
  --olive-deep: #414a3a;
  --charcoal: #242622;
  --charcoal-soft: #4b4c45;
  --terracotta: #b76d54;
  --terracotta-deep: #8e4f3e;
  --aegean: #78989a;
  --line: rgba(36, 38, 34, 0.18);
  --line-light: rgba(244, 240, 231, 0.24);
  --serif: 'Noto Serif', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', 'Segoe UI', Arial, sans-serif;
  --max: 1440px;
  --shadow: 0 24px 70px rgba(36, 38, 34, 0.11);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

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

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

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

p,
h1,
h2,
h3,
h4,
figure,
blockquote {
  margin: 0;
}

p {
  max-width: 70ch;
}

::selection {
  color: var(--ivory);
  background: var(--terracotta);
}

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: var(--ivory);
  background: var(--charcoal);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(244, 240, 231, 0.98);
  border-bottom: 1px solid transparent;
  transition: box-shadow 280ms ease, border-color 280ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(36, 38, 34, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(var(--max), calc(100% - 5rem));
  min-height: 92px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.75rem;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: '';
  background: var(--terracotta);
}

.brand-mark::before {
  top: 5px;
  right: -4px;
  width: 15px;
  height: 1px;
}

.brand-mark::after {
  bottom: 5px;
  left: 5px;
  width: 1px;
  height: 15px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.15rem);
  margin-left: auto;
}

.main-nav a,
.footer-nav a {
  color: var(--charcoal-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current='page'],
.footer-nav a:hover {
  color: var(--terracotta-deep);
}

.header-action,
.text-link,
.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 50px;
  padding: 0.75rem 1.3rem;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.header-action,
.button--dark {
  color: var(--ivory);
  background: var(--charcoal);
}

.header-action:hover,
.button--dark:hover {
  color: var(--ivory);
  background: var(--terracotta-deep);
  transform: translateY(-2px);
}

.button--outline {
  color: var(--charcoal);
  border-color: var(--charcoal);
  background: transparent;
}

.button--outline:hover {
  color: var(--ivory);
  background: var(--charcoal);
  transform: translateY(-2px);
}

.button--light {
  color: var(--charcoal);
  background: var(--ivory);
}

.button--light:hover {
  background: var(--limestone);
  transform: translateY(-2px);
}

.text-link {
  min-height: auto;
  padding: 0;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  background: transparent;
}

.text-link:hover {
  color: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
  transform: translateX(3px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--charcoal);
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  content: '';
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

main {
  display: block;
  overflow: clip;
}

.container {
  width: min(var(--max), calc(100% - 5rem));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--terracotta-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 34px;
  height: 1px;
  content: '';
  background: currentColor;
}

.display-title,
.section-title,
.page-title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.display-title {
  max-width: 9.5ch;
  font-size: clamp(3.35rem, 7vw, 7.8rem);
}

.display-title em,
.section-title em,
.page-title em {
  color: var(--terracotta-deep);
  font-style: italic;
}

.section-title {
  max-width: 13ch;
  font-size: clamp(2.75rem, 5.7vw, 6.6rem);
}

.page-title {
  max-width: 12ch;
  font-size: clamp(3.1rem, 7vw, 7rem);
}

.lead {
  color: var(--charcoal-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.75;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  gap: clamp(2rem, 6vw, 8rem);
  align-items: center;
  min-height: 765px;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(5rem, 10vw, 10rem);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10vw;
  width: min(55vw, 780px);
  height: 100%;
  content: '';
  background: var(--limestone);
  clip-path: polygon(0 0, 77% 0, 100% 41%, 66% 100%, 0 100%);
  opacity: 0.34;
}

.hero-copy {
  position: relative;
  padding-left: clamp(0rem, 3vw, 3.8rem);
}

.hero-copy::after {
  position: absolute;
  top: -5rem;
  left: -1.25rem;
  width: 1px;
  height: 13rem;
  content: '';
  background: var(--terracotta);
  transform: rotate(28deg);
  transform-origin: top;
}

.hero .eyebrow {
  margin-bottom: 1.7rem;
}

.hero h1 {
  margin-bottom: 1.8rem;
}

.hero-copy .lead {
  max-width: 48ch;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.25rem;
  align-items: center;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 4.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-meta span {
  color: var(--charcoal-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  top: -3.2rem;
  right: 6%;
  width: 7rem;
  height: 7rem;
  content: '';
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  opacity: 0.45;
}

.hero-visual::after {
  position: absolute;
  z-index: 2;
  right: -2rem;
  bottom: 3.2rem;
  width: 13rem;
  height: 1px;
  content: '';
  background: var(--charcoal);
  transform: rotate(-39deg);
  transform-origin: right;
  opacity: 0.6;
}

.hero-image {
  position: absolute;
  inset: 0 5% 0 0;
  overflow: hidden;
  clip-path: polygon(9% 0, 100% 7%, 91% 95%, 0 100%);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.83) contrast(1.03);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(120deg, rgba(36, 38, 34, 0.2), transparent 48%, rgba(183, 109, 84, 0.12));
  mix-blend-mode: multiply;
}

.hero-index {
  position: absolute;
  z-index: 3;
  right: -0.4rem;
  bottom: 8.5rem;
  display: grid;
  place-items: center;
  width: 7.2rem;
  height: 7.2rem;
  color: var(--ivory);
  border-radius: 50%;
  background: var(--olive);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.2;
  text-align: center;
  transform: rotate(9deg);
}

.hero-index span {
  display: block;
  max-width: 5ch;
}

.hero-vertical {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: -1.1rem;
  color: var(--charcoal-soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 7vw, 9rem);
  align-items: end;
  min-height: 620px;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(5rem, 10vw, 9rem);
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -10vw;
  width: 52vw;
  height: 100%;
  content: '';
  background: var(--limestone);
  clip-path: polygon(31% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.4;
}

.page-hero-copy .eyebrow {
  margin-bottom: 1.5rem;
}

.page-hero-copy .lead {
  max-width: 42ch;
  margin-top: 1.7rem;
}

.page-hero-visual {
  position: relative;
  min-height: 450px;
}

.page-hero-visual::before {
  position: absolute;
  z-index: 1;
  top: -2.25rem;
  left: -2.2rem;
  width: 8rem;
  height: 8rem;
  content: '';
  border: 1px solid var(--terracotta);
  border-radius: 50%;
}

.page-hero-visual img {
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  clip-path: polygon(7% 0, 100% 8%, 96% 100%, 0 89%);
  box-shadow: var(--shadow);
  filter: saturate(0.8);
}

.page-hero-note {
  position: absolute;
  z-index: 2;
  right: -1.4rem;
  bottom: -1.4rem;
  width: 9.5rem;
  min-height: 9.5rem;
  padding: 1.3rem;
  color: var(--ivory);
  background: var(--charcoal);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.35;
  transform: rotate(-6deg);
}

.page-hero-note::before {
  display: block;
  width: 2rem;
  height: 1px;
  margin-bottom: 1rem;
  content: '';
  background: var(--terracotta);
}

.section {
  padding: clamp(5.5rem, 11vw, 11rem) 0;
}

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

.section--olive {
  color: var(--ivory);
  background: var(--olive-deep);
}

.section--charcoal {
  color: var(--ivory);
  background: var(--charcoal);
}

.section--limestone {
  background: var(--limestone);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-heading .section-title {
  grid-column: 2;
}

.section-heading .section-intro {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  color: var(--charcoal-soft);
}

.section-heading .section-intro p + p {
  margin-top: 1rem;
}

.section--olive .section-heading .section-intro,
.section--charcoal .section-heading .section-intro {
  color: rgba(244, 240, 231, 0.72);
}

.editorial-intro {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
}

.editorial-intro > .section-title {
  position: relative;
  padding-left: clamp(0rem, 4vw, 4rem);
}

.editorial-intro > .section-title::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 2rem;
  height: 2rem;
  content: '';
  border: 1px solid var(--terracotta);
  border-radius: 50%;
}

.editorial-copy {
  padding-top: 1rem;
}

.editorial-copy p + p {
  margin-top: 1.3rem;
}

.editorial-copy .text-link {
  margin-top: 2.25rem;
}

.photo-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 8vw, 10rem);
  align-items: center;
}

.photo-split--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.photo-split--reverse .photo-frame {
  grid-column: 2;
  grid-row: 1;
}

.photo-split--reverse .photo-copy {
  grid-column: 1;
  grid-row: 1;
}

.photo-frame {
  position: relative;
  min-height: 540px;
}

.photo-frame::before {
  position: absolute;
  z-index: 0;
  top: -1.4rem;
  left: -1.4rem;
  width: 38%;
  height: 47%;
  content: '';
  background: var(--limestone);
}

.photo-frame::after {
  position: absolute;
  z-index: 2;
  right: -1.3rem;
  bottom: 1rem;
  width: 5.5rem;
  height: 5.5rem;
  content: '';
  border: 1px solid var(--terracotta);
  border-radius: 50%;
}

.photo-frame img {
  position: relative;
  z-index: 1;
  width: calc(100% - 1.2rem);
  height: 540px;
  object-fit: cover;
  clip-path: polygon(0 5%, 93% 0, 100% 93%, 9% 100%);
  box-shadow: var(--shadow);
  filter: saturate(0.84);
}

.photo-frame--tall img {
  height: 670px;
}

.photo-copy {
  max-width: 49ch;
}

.photo-copy .eyebrow {
  margin-bottom: 1.5rem;
}

.photo-copy h2 {
  margin-bottom: 1.5rem;
}

.photo-copy p + p {
  margin-top: 1.25rem;
}

.photo-copy .text-link {
  margin-top: 2rem;
}

.photo-index {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--terracotta-deep);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.image-band {
  position: relative;
  min-height: clamp(500px, 60vw, 820px);
  overflow: hidden;
  color: var(--ivory);
  background: var(--charcoal);
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  filter: saturate(0.7);
}

.image-band::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, rgba(36, 38, 34, 0.86), rgba(36, 38, 34, 0.25) 65%, rgba(36, 38, 34, 0.46));
}

.image-band-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding: clamp(3rem, 8vw, 8rem) 0;
}

.image-band-content .section-title {
  max-width: 9ch;
}

.image-band-content p {
  max-width: 47ch;
  margin-top: 1.7rem;
  color: rgba(244, 240, 231, 0.78);
}

.image-band-mark {
  position: absolute;
  z-index: 1;
  top: 10%;
  right: 12%;
  width: clamp(8rem, 18vw, 17rem);
  aspect-ratio: 1;
  border: 1px solid rgba(244, 240, 231, 0.6);
  border-radius: 50%;
}

.image-band-mark::before,
.image-band-mark::after {
  position: absolute;
  content: '';
  background: rgba(244, 240, 231, 0.6);
}

.image-band-mark::before {
  top: 50%;
  left: -35%;
  width: 170%;
  height: 1px;
}

.image-band-mark::after {
  top: -35%;
  left: 50%;
  width: 1px;
  height: 170%;
}

.paired-images {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(1.25rem, 4vw, 4rem);
  align-items: end;
}

.paired-images figure {
  position: relative;
}

.paired-images figure:first-child {
  padding-bottom: 8%;
}

.paired-images figure:last-child {
  padding-top: 18%;
}

.paired-images img {
  height: clamp(380px, 48vw, 700px);
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(0.78);
}

.paired-images figure:first-child img {
  clip-path: polygon(0 4%, 95% 0, 100% 95%, 5% 100%);
}

.paired-images figure:last-child img {
  height: clamp(300px, 37vw, 540px);
  clip-path: polygon(8% 0, 100% 6%, 93% 100%, 0 94%);
}

.paired-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 19rem;
  padding: 1.2rem 1.4rem;
  color: var(--ivory);
  background: var(--terracotta-deep);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.4;
}

.paired-images figure:last-child .paired-caption {
  right: 0;
  bottom: 1.5rem;
  left: auto;
  color: var(--charcoal);
  background: var(--limestone);
}

.numbered-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.numbered-item {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.numbered-item > span {
  color: var(--terracotta-deep);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.numbered-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.numbered-item p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

.pull-quote {
  max-width: 850px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.08;
  text-align: center;
}

.pull-quote::before {
  display: block;
  width: 2.5rem;
  height: 1px;
  margin: 0 auto 2.3rem;
  content: '';
  background: var(--terracotta);
}

.contact-section {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 130px;
}

.contact-intro .section-title {
  margin: 1.5rem 0 1.6rem;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.contact-detail {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  font-size: 0.9rem;
}

.contact-detail dt {
  color: var(--terracotta-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail dd {
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.contact-detail a {
  text-decoration: underline;
}

.enquiry-form > .section-title {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.enquiry-form {
  display: grid;
  gap: 1.3rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
}

.section--charcoal .enquiry-form,
.section--olive .enquiry-form {
  color: var(--charcoal);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.field label {
  color: var(--charcoal-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-width: 0;
  padding: 0.9rem 0.95rem;
  color: var(--charcoal);
  border: 1px solid rgba(36, 38, 34, 0.35);
  border-radius: 0;
  outline: none;
  background: var(--ivory);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(75, 76, 69, 0.64);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--terracotta-deep);
  box-shadow: 0 0 0 3px rgba(183, 109, 84, 0.15);
  background: var(--paper);
}

.field input:user-invalid:not(:placeholder-shown),
.field textarea:user-invalid:not(:placeholder-shown),
.field select:user-invalid {
  border-color: var(--terracotta-deep);
}

.field-hint {
  color: var(--charcoal-soft);
  font-size: 0.72rem;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.form-note {
  max-width: 36ch;
  color: var(--charcoal-soft);
  font-size: 0.73rem;
}

.form-status {
  min-height: 1.6rem;
  color: var(--terracotta-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

button.button:disabled {
  cursor: not-allowed;
  color: rgba(244, 240, 231, 0.55);
  background: rgba(36, 38, 34, 0.42);
  transform: none;
}

.modal-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(36, 38, 34, 0.66);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.success-modal {
  position: relative;
  width: min(100%, 520px);
  max-height: min(90vh, 650px);
  overflow-y: auto;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid var(--limestone-deep);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
  transform: translateY(1rem) scale(0.98);
  transition: transform 240ms var(--ease);
}

.modal-backdrop.is-open .success-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--charcoal);
  border: 1px solid var(--line);
  background: transparent;
}

.modal-close:hover {
  color: var(--ivory);
  background: var(--charcoal);
}

.modal-close::before,
.modal-close::after {
  position: absolute;
  width: 16px;
  height: 1px;
  content: '';
  background: currentColor;
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-mark {
  position: relative;
  width: 62px;
  height: 62px;
  margin-bottom: 2rem;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
}

.modal-mark::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 29px;
  height: 1px;
  content: '';
  background: var(--terracotta);
  transform: rotate(-42deg);
}

.success-modal h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.success-modal p {
  color: var(--charcoal-soft);
}

.site-footer {
  color: var(--ivory);
  background: var(--charcoal);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(4rem, 8vw, 8rem) 0 4rem;
}

.site-footer .brand {
  color: var(--ivory);
}

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

.site-footer .brand-mark::before,
.site-footer .brand-mark::after {
  background: var(--terracotta);
}

.footer-statement {
  max-width: 22ch;
  margin-top: 1.8rem;
  color: rgba(244, 240, 231, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1.2;
}

.footer-label {
  display: block;
  margin-bottom: 1rem;
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-contact,
.footer-nav,
.footer-links {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.footer-contact p,
.footer-contact a {
  color: rgba(244, 240, 231, 0.8);
  font-size: 0.83rem;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--ivory);
  text-decoration: underline;
}

.footer-nav a,
.footer-links a {
  color: rgba(244, 240, 231, 0.76);
  font-size: 0.8rem;
  font-weight: 500;
}

.footer-subnav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-light);
  color: rgba(244, 240, 231, 0.52);
  font-size: 0.68rem;
}

.footer-bottom p {
  max-width: none;
}

.legal-page {
  min-height: 55vh;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2.5rem, 8vw, 9rem);
}

.legal-layout h1 {
  position: sticky;
  top: 140px;
  align-self: start;
}

.legal-content {
  max-width: 72ch;
}

.legal-content h2 {
  margin: 2.5rem 0 0.75rem;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content p + ul {
  margin-top: 1rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 0.45rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--charcoal-soft);
}

.route-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.route-map .route-block {
  min-height: 200px;
  padding: 1.4rem;
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.route-map h3 {
  margin-bottom: 0.8rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.route-map p {
  color: var(--charcoal-soft);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay='1'] {
  transition-delay: 90ms;
}

[data-delay='2'] {
  transition-delay: 180ms;
}

[data-delay='3'] {
  transition-delay: 270ms;
}

@media (max-width: 1180px) {
  .header-inner,
  .container {
    width: min(var(--max), calc(100% - 3.5rem));
  }

  .main-nav {
    gap: 1.1rem;
  }

  .main-nav a {
    font-size: 0.7rem;
  }

  .hero {
    gap: 3rem;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-image {
    inset: 0 4% 0 0;
  }

  .contact-grid {
    gap: 4rem;
  }
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 78px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }

  .header-action {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0 1.75rem;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(36, 38, 34, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.8rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .hero::before {
    width: 72vw;
  }

  .hero-copy {
    max-width: 46rem;
    padding-left: 1.4rem;
  }

  .hero-visual {
    min-height: min(74vw, 680px);
  }

  .page-hero {
    min-height: auto;
    align-items: center;
  }

  .page-hero-visual {
    min-height: min(70vw, 560px);
  }

  .page-hero-visual img {
    min-height: min(70vw, 560px);
  }

  .section-heading,
  .editorial-intro,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .section-heading .section-title,
  .section-heading .section-intro {
    grid-column: auto;
    grid-row: auto;
  }

  .section-heading .section-intro {
    max-width: 53ch;
  }

  .editorial-intro > .section-title {
    max-width: 10ch;
  }

  .photo-split,
  .photo-split--reverse {
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }

  .photo-split--reverse .photo-frame,
  .photo-split--reverse .photo-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-split--reverse .photo-frame {
    order: -1;
  }

  .contact-intro {
    position: static;
  }

  .legal-layout h1 {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 0.95rem;
  }

  .header-inner,
  .container {
    width: min(var(--max), calc(100% - 2rem));
  }

  .header-inner {
    gap: 1rem;
  }

  .brand {
    font-size: 1rem;
    letter-spacing: 0.16em;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
  }

  .hero {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .hero::before {
    left: -30vw;
    width: 110vw;
    height: 72%;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-copy::after {
    display: none;
  }

  .display-title {
    max-width: 9ch;
    font-size: clamp(3.15rem, 15vw, 5.6rem);
  }

  .hero-visual {
    min-height: 112vw;
    margin-right: -0.25rem;
  }

  .hero-image {
    inset: 0 0 0 0;
  }

  .hero-vertical {
    left: -0.75rem;
    font-size: 0.55rem;
  }

  .hero-index {
    right: -0.2rem;
    bottom: 3rem;
    width: 5.8rem;
    height: 5.8rem;
    font-size: 0.82rem;
  }

  .hero-meta {
    gap: 0.75rem 1rem;
    margin-top: 3rem;
  }

  .hero-meta span {
    font-size: 0.6rem;
  }

  .page-hero {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .page-title {
    font-size: clamp(3.2rem, 15vw, 5.5rem);
  }

  .page-hero-visual {
    min-height: 110vw;
  }

  .page-hero-visual img {
    min-height: 110vw;
  }

  .page-hero-note {
    right: 0;
    bottom: -1rem;
    width: 7.6rem;
    min-height: 7.6rem;
    padding: 1rem;
    font-size: 0.8rem;
  }

  .page-hero-visual::before {
    top: -1rem;
    left: -0.5rem;
    width: 5rem;
    height: 5rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section-title {
    max-width: 11ch;
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .editorial-intro > .section-title {
    padding-left: 2rem;
  }

  .editorial-intro > .section-title::before {
    width: 1.4rem;
    height: 1.4rem;
  }

  .photo-frame,
  .photo-frame--tall {
    min-height: 105vw;
  }

  .photo-frame img,
  .photo-frame--tall img {
    width: calc(100% - 0.75rem);
    height: 105vw;
  }

  .photo-frame::before {
    top: -0.75rem;
    left: -0.45rem;
  }

  .photo-frame::after {
    right: -0.3rem;
    bottom: 0.4rem;
    width: 4rem;
    height: 4rem;
  }

  .image-band {
    min-height: 130vw;
  }

  .image-band-content {
    padding-bottom: 3.5rem;
  }

  .image-band-mark {
    top: 13%;
    right: 6%;
    width: 7.5rem;
  }

  .paired-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .paired-images figure:first-child,
  .paired-images figure:last-child {
    padding: 0;
  }

  .paired-images img,
  .paired-images figure:last-child img {
    height: 112vw;
  }

  .paired-images figure:last-child .paired-caption {
    bottom: 1rem;
  }

  .numbered-item {
    grid-template-columns: 2.25rem 1fr;
    gap: 0.8rem;
    padding: 1.5rem 0;
  }

  .numbered-item h3,
  .numbered-item p {
    grid-column: 2;
  }

  .numbered-item > span {
    grid-row: 1 / span 2;
  }

  .contact-grid {
    gap: 3rem;
  }

  .contact-detail {
    grid-template-columns: 4.6rem minmax(0, 1fr);
    gap: 0.65rem;
  }

  .enquiry-form {
    padding: 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .modal-backdrop {
    align-items: start;
    padding: 0.75rem;
  }

  .success-modal {
    max-height: calc(100dvh - 1.5rem);
    padding: 3.5rem 1.35rem 1.75rem;
  }

  .success-modal h2 {
    max-width: 10ch;
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 5rem;
  }

  .footer-subnav {
    max-width: 22rem;
  }

  .route-map {
    grid-template-columns: 1fr;
  }

  .route-map .route-block {
    min-height: 0;
  }
}

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

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