:root {
  --paper: #f4f0e8;
  --paper-deep: #e8e1d5;
  --ink: #20211f;
  --ink-soft: #595a55;
  --line: rgba(32, 33, 31, 0.2);
  --dark: #22251f;
  --white: #fffdf8;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --header-height: 68px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(84px, 11vw, 168px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button,
summary {
  cursor: pointer;
}

button {
  border: 0;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  margin-bottom: 32px;
  font-size: clamp(54px, 7.6vw, 116px);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 5.7vw, 82px);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.025em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  color: var(--white);
  background: var(--dark);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  background: rgba(244, 240, 232, 0.94);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
}

.wordmark span:last-child {
  color: var(--ink-soft);
  font-weight: 400;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.7vw, 44px);
  height: 100%;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav > a,
.desktop-nav > button,
.nav-group > button {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  background: transparent;
  letter-spacing: inherit;
  text-transform: inherit;
}

.desktop-nav > a::after,
.desktop-nav > button::after,
.nav-group > button::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > button:hover::after,
.desktop-nav > button:focus-visible::after,
.nav-group > button:hover::after,
.nav-group > button:focus-visible::after,
.nav-group > button[aria-current="page"]::after,
.desktop-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-group {
  position: relative;
  height: 100%;
}

.nav-group > button {
  gap: 7px;
}

.nav-group > button span {
  font-size: 14px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.nav-group > button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% - 1px);
  right: -20px;
  display: grid;
  width: 260px;
  padding: 16px 20px 20px;
  visibility: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

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

.nav-menu a {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

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

.menu-toggle,
.mobile-menu {
  display: none;
}

main {
  min-height: 70vh;
  padding-top: var(--header-height);
}

.eyebrow {
  margin-bottom: 19px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lede {
  max-width: 33ch;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(23px, 2.25vw, 34px);
  line-height: 1.25;
}

.text-link,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 0 5px;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button-link::after,
.text-link::after {
  content: "↗";
  font-size: 14px;
}

.button-link.solid {
  padding: 13px 20px;
  border: 1px solid var(--ink);
}

.button-link.solid::after {
  content: "→";
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  min-height: calc(100dvh - var(--header-height));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(60px, 8vw, 120px) var(--gutter) clamp(48px, 7vw, 96px);
}

.hero-copy .eyebrow {
  margin-bottom: auto;
}

.hero-copy p:last-child {
  max-width: 30ch;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.hero-media,
.page-hero-media,
.story-media,
.feature-image,
.contact-media {
  overflow: hidden;
  background: var(--paper-deep);
}

.hero-media img,
.page-hero-media img,
.story-media img,
.feature-image img,
.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  object-position: 56% center;
}

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 8vw, 132px);
  align-items: center;
  padding: var(--section-space) var(--gutter);
}

.philosophy-copy {
  max-width: 590px;
}

.philosophy-copy p:not(.eyebrow):not(.lede) {
  max-width: 48ch;
  color: var(--ink-soft);
}

.philosophy-media {
  min-height: clamp(480px, 62vw, 820px);
}

.philosophy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto {
  display: grid;
  place-items: center;
  min-height: min(760px, 86vh);
  padding: var(--section-space) var(--gutter);
  text-align: center;
  color: var(--white);
  background: var(--dark);
}

.manifesto-inner {
  max-width: 940px;
}

.manifesto .eyebrow {
  color: rgba(255, 253, 248, 0.58);
}

.manifesto h2 {
  font-size: clamp(50px, 8.2vw, 124px);
}

.manifesto p:last-child {
  max-width: 49ch;
  margin: 0 auto;
  color: rgba(255, 253, 248, 0.68);
}

.category-section,
.work-section,
.page-section {
  padding: var(--section-space) var(--gutter);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(42px, 6vw, 82px);
}

.section-heading h2 {
  max-width: 9ch;
  margin-bottom: 0;
}

.section-heading p {
  max-width: 40ch;
  margin-bottom: 5px;
  color: var(--ink-soft);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 76px) clamp(16px, 2.3vw, 36px);
}

.category-card {
  display: block;
}

.category-image {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  background: var(--paper-deep);
}

.category-image img,
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.category-card:hover img,
.category-card:focus-visible img,
.portfolio-item:hover img,
.portfolio-item:focus-visible img {
  transform: scale(1.025);
}

.category-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.category-meta h3 {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 38px);
}

.category-meta span {
  color: var(--ink-soft);
  font-size: 16px;
}

.work-section {
  padding-top: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
}

.feature-image {
  aspect-ratio: 1.35;
}

.feature-copy {
  padding-bottom: 24px;
}

.feature-copy p:not(.eyebrow) {
  max-width: 36ch;
  color: var(--ink-soft);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  min-height: min(760px, calc(100dvh - var(--header-height)));
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 134px) var(--gutter);
}

.page-hero-copy .lede {
  max-width: 25ch;
}

.page-hero-media {
  min-height: 540px;
}

.story-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(46px, 8vw, 130px);
  align-items: center;
  padding: var(--section-space) var(--gutter);
}

.story-section.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.story-section.reverse .story-media {
  order: 2;
}

.story-media {
  min-height: 650px;
}

.story-copy {
  max-width: 570px;
}

.story-copy p:not(.eyebrow):not(.lede) {
  color: var(--ink-soft);
}

.team-note {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  padding: var(--section-space) var(--gutter);
  border-top: 1px solid var(--line);
}

.team-note p:last-child {
  max-width: 52ch;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1.24;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: clamp(28px, 3.6vw, 54px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card .service-count {
  margin-bottom: auto;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 18px;
}

.service-card h2 {
  font-size: clamp(34px, 3.5vw, 52px);
}

.service-card p {
  color: var(--ink-soft);
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}

.service-links button {
  background: transparent;
}

.portfolio-intro {
  padding: clamp(86px, 11vw, 160px) var(--gutter) clamp(56px, 7vw, 100px);
}

.portfolio-intro h1 {
  max-width: 12ch;
}

.portfolio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding: 0 var(--gutter) 38px;
  border-bottom: 1px solid var(--line);
}

.portfolio-controls button {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-controls button.active {
  border-color: var(--ink);
  color: var(--ink);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter) clamp(14px, 2vw, 30px);
  padding: clamp(42px, 6vw, 82px) var(--gutter) var(--section-space);
}

.portfolio-item {
  display: block;
  padding: 0;
  text-align: left;
  background: transparent;
}

.portfolio-item-media {
  aspect-ratio: 0.78;
  overflow: hidden;
  background: var(--paper-deep);
}

.portfolio-item:nth-child(3n + 2) .portfolio-item-media {
  aspect-ratio: 1;
}

.portfolio-item:nth-child(3n) .portfolio-item-media {
  aspect-ratio: 0.9;
}

.portfolio-item p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-empty {
  grid-column: 1 / -1;
  padding: 60px 0;
  font-family: var(--display);
  font-size: 30px;
}

.contact-page {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: calc(100dvh - var(--header-height));
}

.contact-media {
  min-height: 760px;
}

.contact-content {
  padding: clamp(70px, 9vw, 140px) var(--gutter);
}

.contact-content h1 {
  max-width: 10ch;
}

.contact-content > p:not(.eyebrow) {
  max-width: 40ch;
  color: var(--ink-soft);
}

.enquiry-form {
  margin-top: clamp(38px, 5vw, 72px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 26px;
}

.form-field {
  position: relative;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.form-group-label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 8px 0 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ink);
}

.form-field [aria-invalid="true"] {
  border-color: #8b2f25;
}

.field-error {
  margin: 6px 0 0;
  color: #8b2f25;
  font-size: 11px;
}

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

.turnstile-wrap {
  min-height: 0;
  margin-top: 26px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.form-actions button {
  flex: 0 0 auto;
  min-height: 49px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.form-status.error {
  color: #8b2f25;
}

.form-status.success {
  color: #2f6141;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: clamp(36px, 6vw, 94px);
  padding: clamp(70px, 9vw, 130px) var(--gutter) 30px;
  color: rgba(255, 253, 248, 0.75);
  background: var(--dark);
}

.footer-mark {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
}

.site-footer p {
  margin-bottom: 12px;
}

.site-footer > div:not(.footer-bottom) a,
.site-footer > div:not(.footer-bottom) button {
  display: block;
  width: fit-content;
  margin: 10px 0;
  padding: 0;
  border-bottom: 1px solid transparent;
  color: inherit;
  background: transparent;
  text-align: left;
}

.site-footer > div:not(.footer-bottom) a:hover,
.site-footer > div:not(.footer-bottom) a:focus-visible,
.site-footer > div:not(.footer-bottom) button:hover,
.site-footer > div:not(.footer-bottom) button:focus-visible {
  border-color: currentColor;
  color: var(--white);
}

.footer-label {
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.2);
  font-size: 11px;
}

.enquiry-dialog {
  width: min(1120px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  padding: clamp(38px, 5vw, 76px);
  overflow: auto;
  border: 0;
  color: var(--ink);
  background: var(--paper);
}

.enquiry-dialog::backdrop {
  background: rgba(22, 23, 21, 0.72);
  backdrop-filter: blur(3px);
}

.enquiry-dialog[open] {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(38px, 6vw, 90px);
}

.enquiry-dialog h2 {
  max-width: 8ch;
  font-size: clamp(42px, 5.2vw, 72px);
}

.dialog-intro > p:last-child {
  max-width: 27ch;
  color: var(--ink-soft);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  font-family: var(--display);
  font-size: 35px;
  font-weight: 300;
}

.enquiry-dialog .enquiry-form {
  margin-top: 0;
}

.error-page {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: var(--section-space) var(--gutter);
  text-align: center;
}

.error-page h1 {
  max-width: none;
}

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

@media (max-width: 920px) {
  :root {
    --header-height: 62px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 11px 4px;
    background: transparent;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 30px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: var(--header-height) 0 0;
    display: block;
    visibility: hidden;
    overflow: auto;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-10px);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-inner {
    display: grid;
    min-height: calc(100% - 1px);
    align-content: start;
    padding: 28px var(--gutter) 40px;
  }

  .mobile-menu-inner > a,
  .mobile-menu-inner > button,
  .mobile-menu summary {
    display: block;
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-family: var(--display);
    font-size: 36px;
    line-height: 1;
    text-align: left;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary::after {
    float: right;
    content: "+";
  }

  .mobile-menu details[open] summary::after {
    content: "×";
  }

  .mobile-menu details div {
    display: grid;
    padding: 10px 0 18px 18px;
  }

  .mobile-menu details a {
    padding: 7px 0;
    color: var(--ink-soft);
  }

  .mobile-menu-inner > p {
    align-self: end;
    margin: 60px 0 0;
    color: var(--ink-soft);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
    height: min(64vh, 650px);
  }

  .hero-copy {
    min-height: 46vh;
    padding-top: 34px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 44px;
  }

  .philosophy,
  .story-section,
  .story-section.reverse,
  .team-note {
    grid-template-columns: 1fr;
  }

  .philosophy-media,
  .story-media {
    min-height: 620px;
  }

  .story-section.reverse .story-media {
    order: 0;
  }

  .page-hero-media {
    order: -1;
    min-height: min(65vh, 650px);
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    min-height: 340px;
  }

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

  .contact-media {
    min-height: min(66vh, 650px);
  }

  .enquiry-dialog[open] {
    grid-template-columns: 1fr;
  }

  .enquiry-dialog h2 {
    max-width: 12ch;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(50px, 16vw, 78px);
  }

  h2 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero-media {
    height: 57vh;
  }

  .hero-copy {
    min-height: 43vh;
  }

  .philosophy,
  .story-section,
  .category-section,
  .work-section,
  .page-section {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .philosophy-media,
  .story-media {
    min-height: 520px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 22px;
  }

  .category-grid,
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-grid {
    gap: 36px 12px;
  }

  .category-meta {
    display: block;
    padding-top: 12px;
  }

  .category-meta h3 {
    font-size: 25px;
  }

  .category-meta span {
    display: none;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-image {
    aspect-ratio: 0.92;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 310px;
  }

  .portfolio-controls {
    flex-wrap: nowrap;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .portfolio-controls::-webkit-scrollbar {
    display: none;
  }

  .portfolio-grid {
    gap: 36px 12px;
  }

  .portfolio-item p {
    font-size: 8px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-field.full {
    grid-column: auto;
  }

  .form-actions {
    display: block;
  }

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

  .form-status {
    margin-top: 14px;
  }

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

  .site-footer > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }

  .enquiry-dialog {
    width: 100vw;
    max-width: 100vw;
    max-height: 100dvh;
    min-height: 100dvh;
    margin: 0;
    padding: 58px 20px 38px;
  }
}

@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;
  }
}

/* ============================================================
   LINKS VARIATION ALIGNMENT
   Preserve the established Wish Makeup visual system while applying the
   client's requested hierarchy, navigation and contact refinements.
   ============================================================ */

:root {
  --paper: #faf9f6;
  --paper-deep: #f2eee7;
  --ink: #1d1c1a;
  --ink-soft: color-mix(in srgb, #1d1c1a 68%, #faf9f6);
  --line: #e8e3db;
  --dark: #1d1c1a;
  --white: #faf9f6;
  --display: "Canela", "Cormorant Garamond", Georgia, serif;
  --sans: "Neue Haas Grotesk Display Pro", "Neue Haas Grotesk", "Inter", "Helvetica Neue", Arial, sans-serif;
  --header-height: 70px;
  --gutter: clamp(24px, 4.5vw, 64px);
  --content-max: 1280px;
  --section-space: clamp(72px, 8vw, 112px);
}

body {
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

h1,
h2,
h3 {
  font-weight: 300;
}

.site-header {
  height: var(--header-height);
  padding: 0 var(--gutter);
  border-bottom-color: var(--line);
  background: rgba(250, 249, 246, 0.94);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.wordmark span {
  display: block;
  width: max-content;
  color: var(--ink);
  font-weight: 400;
  text-transform: uppercase;
}

.wordmark span:first-child {
  font-size: 18px;
  letter-spacing: 0.28em;
}

.wordmark span:last-child {
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: 0.38em;
  transform: translateX(-1.5px);
}

.desktop-nav {
  gap: clamp(28px, 4vw, 58px);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.desktop-nav > a::after,
.desktop-nav > button::after,
.nav-group > button::after {
  bottom: 17px;
}

.nav-menu {
  right: -18px;
  width: 278px;
  padding: 18px 22px 22px;
  border-color: var(--line);
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(29, 28, 26, 0.07);
}

.nav-menu a {
  padding: 10px 0;
  border-color: var(--line);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

main {
  padding-top: var(--header-height);
}

.eyebrow {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.text-link,
.button-link {
  min-height: 38px;
  padding: 0 0 3px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.text-link::after,
.button-link::after {
  content: none;
}

.button-link.solid {
  min-height: 46px;
  padding: 12px 20px;
  border-color: var(--ink);
}

.hero {
  position: relative;
  display: block;
  width: 100%;
  min-height: calc(100dvh - var(--header-height));
  margin: 0;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-copy {
  z-index: 1;
  justify-content: center;
  width: min(100%, var(--content-max));
  min-height: calc(100dvh - var(--header-height));
  margin: 0 auto;
  padding: clamp(68px, 8vw, 118px) var(--gutter);
}

.hero-copy .eyebrow {
  margin: 0 0 clamp(38px, 5vw, 70px);
  color: rgba(255, 253, 248, 0.88);
}

.hero-copy h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy > p:last-child {
  display: none;
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.hero-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 21, 19, 0.58) 0%, rgba(20, 21, 19, 0.27) 52%, rgba(20, 21, 19, 0.08) 100%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  object-position: 62% center;
}

.hero-support {
  display: grid;
  grid-template-columns: minmax(300px, 370px) minmax(360px, 480px);
  align-items: center;
  justify-content: center;
  gap: clamp(72px, 10vw, 176px);
  width: 100%;
  margin: 0 auto;
  padding: clamp(112px, 9vw, 144px) var(--gutter) clamp(132px, 12vw, 190px);
}

.intro-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 0.695;
  min-height: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.intro-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 900ms ease,
    visibility 900ms ease;
}

.intro-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.intro-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-support-copy {
  align-self: center;
  padding: 0;
}

.hero-support-copy > p {
  max-width: 630px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 300;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 24px;
}

.hero-actions button {
  background: transparent;
}

.territory {
  display: flex;
  gap: 16px;
  margin-top: clamp(46px, 6vw, 76px);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.manifesto {
  min-height: 0;
  padding: clamp(46px, 5vw, 72px) var(--gutter);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
  width: min(100%, var(--content-max));
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.manifesto .eyebrow {
  margin: 0;
}

.manifesto h2 {
  max-width: 18ch;
  margin: 0 auto;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 300;
  line-height: 1.1;
}

.manifesto p:last-child {
  margin: 0 auto;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.recent-section,
.category-section,
.page-section {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: var(--section-space) var(--gutter);
}

.section-heading {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading h2 {
  max-width: 12ch;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
}

.section-heading.centered h2 {
  max-width: none;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.recent-item {
  margin: 0;
  outline: 1px solid rgba(29, 28, 26, 0.08);
  outline-offset: -1px;
}

.recent-item img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
}

.recent-item.wide {
  grid-column: span 2;
}

.recent-item.wide img {
  height: 100%;
  aspect-ratio: auto;
}

.recent-item figcaption {
  display: grid;
  gap: 3px;
  padding: 14px 16px 16px;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.15;
}

.recent-item figcaption span {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.category-section {
  border-top: 1px solid var(--line);
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(44px, 6vw, 76px) clamp(22px, 3vw, 42px);
}

.category-image {
  aspect-ratio: 3 / 4;
  outline: 1px solid rgba(29, 28, 26, 0.08);
  outline-offset: -1px;
}

.category-meta {
  display: block;
  padding-top: 18px;
  border: 0;
}

.category-meta h3 {
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(100%, var(--content-max));
  min-height: min(730px, calc(100dvh - var(--header-height)));
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.page-hero-copy {
  padding: clamp(70px, 8vw, 120px) var(--gutter);
}

.page-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(50px, 5.8vw, 78px);
  font-weight: 300;
  line-height: 1.08;
}

.page-hero-copy .lede {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.7;
}

.page-hero-media {
  min-height: 540px;
}

.story-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: var(--section-space) var(--gutter);
}

.story-media {
  min-height: 620px;
}

.story-copy h2 {
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 300;
}

.story-copy .lede {
  font-family: var(--sans);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.65;
}

/* Shared supporting pages opened from the About popup. */
.experience-intro,
.faq-intro {
  padding-bottom: clamp(36px, 4vw, 54px);
}

.experience-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px);
  padding-top: 0;
}

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

.experience-step > span {
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 28px;
}

.experience-step h2 {
  margin: 28px 0 14px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
}

.experience-step p,
.faq-item p {
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.75;
}

.experience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-space);
}

.faq-list {
  padding-top: 0;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(27px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.25;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 68ch;
  margin: -4px 0 28px;
}

.portfolio-intro {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: clamp(82px, 9vw, 128px) var(--gutter) clamp(50px, 6vw, 78px);
}

.portfolio-intro h1 {
  max-width: 12ch;
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 300;
  line-height: 1.06;
}

.portfolio-intro .lede {
  max-width: 48ch;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.7;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 7vw, 92px) clamp(30px, 5vw, 70px);
  border: 0;
}

.service-card {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
}

.service-card-image {
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  overflow: hidden;
  outline: 1px solid rgba(29, 28, 26, 0.08);
  outline-offset: -1px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.service-card p {
  max-width: 56ch;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.7;
}

.service-links {
  gap: 24px;
}

.destination-panel {
  width: min(calc(100% - (2 * var(--gutter))), calc(var(--content-max) - (2 * var(--gutter))));
  margin: 0 auto var(--section-space);
  padding: clamp(40px, 5vw, 64px);
  background: var(--paper-deep);
}

.destination-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 300;
}

.destination-panel > p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--ink-soft);
}

.portfolio-controls {
  gap: 8px 30px;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: 0 var(--gutter) 32px;
  border-color: var(--line);
}

.portfolio-controls button {
  padding: 8px 0 5px;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 16px;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: clamp(42px, 5vw, 72px) var(--gutter) var(--section-space);
}

.portfolio-item {
  display: block;
  background: transparent;
}

.portfolio-item-media,
.portfolio-item:nth-child(3n + 2) .portfolio-item-media,
.portfolio-item:nth-child(3n) .portfolio-item-media {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.portfolio-item.wide .portfolio-item-media {
  aspect-ratio: 16 / 10;
}

.portfolio-item-caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 13px;
}

.portfolio-item-caption p {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

.portfolio-item-caption p span {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-item-caption button {
  padding: 0 0 3px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-page {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  width: min(100%, var(--content-max));
  min-height: calc(100dvh - var(--header-height));
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-content {
  padding: clamp(64px, 7vw, 110px) var(--gutter);
}

.contact-content h1 {
  max-width: 10ch;
  font-size: clamp(50px, 5.5vw, 74px);
  font-weight: 300;
}

.contact-content > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-weight: 300;
}

.contact-media {
  min-height: 760px;
}

.enquiry-form {
  margin-top: clamp(36px, 4vw, 54px);
}

.form-field label,
.form-group-label {
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-color: var(--line);
  font-weight: 300;
}

.form-actions button {
  border-color: var(--ink);
  border-radius: 0;
  background: var(--ink);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.site-footer {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(68px, 8vw, 108px) var(--gutter) 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--paper);
}

.footer-mark {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-kicker {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer > div:not(.footer-bottom) a,
.site-footer > div:not(.footer-bottom) button {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 300;
}

.site-footer > div:not(.footer-bottom) a:hover,
.site-footer > div:not(.footer-bottom) a:focus-visible,
.site-footer > div:not(.footer-bottom) button:hover,
.site-footer > div:not(.footer-bottom) button:focus-visible,
.footer-label {
  color: var(--ink);
}

.footer-bottom {
  border-color: var(--line);
  color: var(--ink-soft);
}

.enquiry-dialog {
  width: min(1120px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  padding: 0;
  background: var(--paper);
}

.enquiry-dialog[open] {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
}

.dialog-photo {
  min-height: 760px;
  overflow: hidden;
}

.dialog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-content {
  padding: clamp(34px, 3.5vw, 50px);
}

.enquiry-dialog h2 {
  max-width: 9ch;
  font-size: clamp(42px, 4.2vw, 58px);
  font-weight: 300;
  line-height: 1.05;
}

.dialog-intro > p:last-child {
  max-width: 38ch;
  color: var(--ink-soft);
  font-weight: 300;
}

.dialog-content .enquiry-form {
  margin-top: 22px;
}

.dialog-content .form-grid {
  gap: 18px 24px;
}

.dialog-content .form-field label {
  margin-bottom: 3px;
}

.dialog-content .form-field input,
.dialog-content .form-field select,
.dialog-content .form-field textarea {
  padding-top: 4px;
  padding-bottom: 9px;
}

.dialog-content .form-field textarea {
  min-height: 66px;
}

.dialog-content .form-actions {
  margin-top: 18px;
}

.dialog-close {
  z-index: 2;
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .manifesto h2 {
    max-width: 18ch;
  }

  .mobile-menu {
    z-index: 110;
    top: 0;
    right: auto;
    bottom: 0;
    width: min(440px, 88vw);
    padding-top: var(--header-height);
    box-shadow: 20px 0 48px rgba(29, 28, 26, 0.12);
  }

  .site-header {
    z-index: 120;
  }

  .hero,
  .page-hero {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
    border-right: 0;
    border-left: 0;
  }

  .hero-media,
  .page-hero-media {
    order: -1;
    height: 58vh;
    min-height: 440px;
  }

  .hero {
    min-height: calc(100dvh - var(--header-height));
  }

  .hero-media {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
  }

  .hero-copy {
    justify-content: flex-end;
    min-height: calc(100dvh - var(--header-height));
    padding: 42px var(--gutter) 60px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 30px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(46px, 10.5vw, 58px);
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(20, 21, 19, 0.1) 0%, rgba(20, 21, 19, 0.55) 100%);
  }

  .hero-support {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 72px;
    padding: 96px var(--gutter) 116px;
  }

  .intro-carousel {
    width: min(100%, 440px);
    min-height: 0;
  }

  .hero-support-copy {
    width: min(100%, 540px);
    padding: 0;
  }

  .territory {
    flex-wrap: wrap;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-media {
    min-height: 560px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .experience-steps {
    grid-template-columns: 1fr;
  }

  .contact-page {
    grid-template-columns: 1fr;
    width: 100%;
    border: 0;
  }

  .contact-media {
    min-height: 58vh;
  }

  .enquiry-dialog[open] {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .dialog-photo {
    min-height: 720px;
  }
}

@media (max-width: 680px) {
  .hero-media,
  .page-hero-media {
    height: 58vh;
    min-height: 420px;
  }

  .hero-media {
    height: 100%;
    min-height: 0;
  }

  .hero-copy {
    min-height: calc(100dvh - var(--header-height));
    padding: 34px 20px 54px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 50px);
  }

  .hero-support {
    gap: 54px;
    padding: 72px 20px 88px;
  }

  .intro-carousel {
    width: min(100%, 390px);
    min-height: 0;
  }

  .hero-support-copy {
    width: 100%;
    padding: 0;
  }

  .manifesto {
    min-height: 0;
    padding: 46px 20px;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .manifesto h2 {
    max-width: 18ch;
    font-size: clamp(30px, 9vw, 40px);
  }

  .recent-section,
  .category-section,
  .page-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .recent-grid,
  .category-grid,
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recent-item.wide {
    grid-column: span 2;
  }

  .recent-item figcaption,
  .portfolio-item-caption p {
    font-size: 20px;
  }

  .category-meta h3 {
    font-size: 25px;
  }

  .page-hero-copy {
    padding: 52px 20px 64px;
  }

  .page-hero-copy h1,
  .portfolio-intro h1,
  .contact-content h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .story-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .story-media {
    min-height: 500px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .portfolio-intro,
  .portfolio-controls,
  .portfolio-grid {
    padding-right: 20px;
    padding-left: 20px;
  }

  .portfolio-grid {
    gap: 34px 12px;
  }

  .portfolio-item-caption {
    display: block;
  }

  .portfolio-item-caption button {
    margin-top: 10px;
  }

  .contact-content {
    padding: 52px 20px 70px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-footer > div:first-child,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .enquiry-dialog {
    width: 100vw;
    max-height: 100dvh;
    min-height: 100dvh;
  }

  .enquiry-dialog[open] {
    display: block;
  }

  .dialog-photo {
    height: 38vh;
    min-height: 280px;
  }

  .dialog-content {
    padding: 44px 20px 50px;
  }
}
