:root {
  --ink: #28231f;
  --ink-soft: #5d554f;
  --paper: #f7f4ee;
  --cream: #eee7dc;
  --sand: #d8cbbb;
  --taupe: #9c8c7d;
  --brown: #5b4b40;
  --white: #fffdf9;
  --line: rgba(40, 35, 31, 0.16);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "Manrope", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  --page: min(100% - 48px, 1340px);
  --narrow: min(100% - 48px, 920px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

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

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

::selection {
  color: var(--white);
  background: var(--brown);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 5px;
}

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

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

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

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.display-title,
.page-title,
.section-title,
.card-title,
.service-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.display-title {
  max-width: 1180px;
  font-size: clamp(62px, 8.6vw, 132px);
}

.page-title {
  max-width: 990px;
  font-size: clamp(50px, 6.8vw, 102px);
}

.section-title {
  font-size: clamp(40px, 4.7vw, 72px);
}

.card-title {
  font-size: clamp(34px, 3.5vw, 54px);
}

.service-title {
  font-size: clamp(40px, 4.4vw, 64px);
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.7;
}

.text-link,
.arrow-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.text-link::after,
.arrow-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.text-link:hover::after,
.arrow-link:hover::after {
  transform: scaleX(0.35);
}

.arrow {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 0;
  transition: transform 0.3s var(--ease);
}

.arrow-link:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(5px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 86px;
  color: var(--ink);
  transition: color 0.35s ease, background 0.35s ease, height 0.35s ease, box-shadow 0.35s ease;
}

.site-header--overlay:not(.is-scrolled):not(.menu-active) {
  color: var(--white);
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 72px;
  background: rgba(247, 244, 238, 0.93);
  box-shadow: 0 1px 0 var(--line);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  width: var(--page);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

@media (min-width: 981px) {
  .site-header--home-compact .header-inner {
    justify-content: flex-start;
  }

  .site-header--home-compact .desktop-nav {
    margin-left: clamp(54px, 6vw, 92px);
  }
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 0.85;
}

.brand span {
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.desktop-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.nav-services {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-services > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services-menu-chevron,
.mobile-services-chevron {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s var(--ease);
}

.nav-services::before {
  position: absolute;
  top: 100%;
  right: -220px;
  width: min(760px, calc(100vw - 48px));
  height: 30px;
  content: "";
}

.services-mega {
  position: absolute;
  top: calc(100% + 28px);
  right: -220px;
  display: grid;
  width: min(690px, calc(100vw - 48px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 26px 30px 28px;
  border: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.98);
  box-shadow: 0 22px 55px rgba(40, 35, 31, 0.15);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s var(--ease), visibility 0.25s ease;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav-services:hover .services-mega,
.nav-services:focus-within .services-mega,
.nav-services.is-open .services-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-services:hover .services-menu-chevron,
.nav-services:focus-within .services-menu-chevron,
.nav-services.is-open .services-menu-chevron {
  transform: translateY(1px) rotate(225deg);
}

.services-mega__group + .services-mega__group {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.desktop-nav .services-mega__title {
  display: block;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: none;
}

.desktop-nav .services-mega__title::after,
.desktop-nav .services-mega__links a::after {
  display: none;
}

.services-mega__links {
  display: grid;
  gap: 7px;
}

.desktop-nav .services-mega__links a {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.4;
  text-transform: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav .services-mega__links a:hover,
.desktop-nav .services-mega__links a:focus-visible {
  color: var(--ink);
  transform: translateX(3px);
}

.desktop-nav a {
  position: relative;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

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

.nav-cta {
  padding: 12px 18px;
  border: 1px solid currentColor;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-cta:hover {
  color: var(--paper);
  background: var(--ink);
}

.site-header--overlay:not(.is-scrolled):not(.menu-active) .nav-cta:hover {
  color: var(--ink);
  background: var(--white);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before {
  position: absolute;
  left: 7px;
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: top 0.3s var(--ease), transform 0.3s var(--ease);
}

.menu-toggle::before {
  top: 16px;
}

.menu-toggle span {
  top: 25px;
}

.menu-toggle[aria-expanded="true"]::before {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 2;
  inset: 0;
  display: none;
  height: 100dvh;
  padding: clamp(88px, 11vh, 108px) 24px 28px;
  background: var(--paper);
  color: var(--ink);
  opacity: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  pointer-events: none;
  transition: opacity 0.3s ease;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav__links > a {
  padding-block: 3px;
  font-family: var(--serif);
  font-size: clamp(30px, 7vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.mobile-services summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 3px;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(30px, 7vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  cursor: pointer;
}

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

.mobile-services[open] .mobile-services-chevron {
  transform: translateY(2px) rotate(225deg);
}

.mobile-services-menu {
  display: grid;
  gap: 0;
  padding: 16px 0 12px 3px;
}

.mobile-services-menu__group {
  display: grid;
  grid-template-columns: minmax(108px, 0.85fr) minmax(0, 1.35fr);
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.mobile-services-menu__group:last-child {
  border-bottom: 1px solid var(--line);
}

.mobile-services-menu__title {
  display: block;
  margin: 0;
  padding: 5px 0;
  color: var(--ink);
  font-family: var(--serif) !important;
  font-size: 20px !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
}

.mobile-services-menu__links {
  display: grid;
  min-width: 0;
  gap: 0;
}

.mobile-nav__links .mobile-services-menu__links a {
  display: inline-flex;
  min-width: 0;
  min-height: 31px;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(40, 35, 31, 0.08);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.mobile-nav__links .mobile-services-menu__links a:last-child {
  border-bottom: 0;
}

.mobile-nav__footer {
  position: absolute;
  right: 24px;
  bottom: 30px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  color: var(--white);
  background: #62574f;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 21, 18, 0.6) 0%, rgba(25, 21, 18, 0.22) 58%, rgba(25, 21, 18, 0.1) 100%),
    linear-gradient(0deg, rgba(25, 21, 18, 0.64) 0%, transparent 54%),
    linear-gradient(180deg, rgba(25, 21, 18, 0.3) 0%, transparent 28%);
  content: "";
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 32px;
  background:
    radial-gradient(circle at 68% 38%, rgba(228, 211, 192, 0.24), transparent 23%),
    linear-gradient(135deg, #675c53, #938476 51%, #594e47);
}

.hero-placeholder::before {
  position: absolute;
  top: 16%;
  right: 17%;
  width: 28%;
  height: 55%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 48% 48% 4px 4px;
  content: "";
  transform: rotate(4deg);
}

.placeholder-note {
  position: relative;
  z-index: 2;
  max-width: 360px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(40, 35, 31, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--page);
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  padding: 150px 0 178px;
}

.hero .eyebrow {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-heading {
  margin-top: auto;
}

.hero .display-title {
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(25, 21, 18, 0.14);
}

.hero .display-title em {
  font-weight: 400;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
  margin-top: 42px;
}

.hero-bottom--right {
  justify-content: flex-end;
}

.hero-subtitle {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 27px);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.hero .text-link {
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-shrink: 0;
}

.hero-primary {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  background: var(--white);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease);
}

.hero-primary:hover {
  color: var(--white);
  background: var(--brown);
  transform: translateY(-2px);
}

.hero-primary .arrow {
  transform: translateY(-2px);
}

.hero-primary:hover .arrow {
  transform: translate(5px, -2px);
}

.hero-universes {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 86px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(31, 27, 24, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-universes a {
  display: flex;
  align-items: center;
  padding: 20px max(24px, calc((100vw - 1340px) / 6));
  transition: background 0.3s ease;
}

.hero-universes a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-universes a:hover,
.hero-universes a:focus-visible {
  background: rgba(255, 255, 255, 0.13);
}

.hero-universes strong {
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.intro {
  padding: clamp(100px, 13vw, 190px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(70px, 10vw, 170px);
  align-items: start;
}

.intro-statement {
  max-width: 730px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.9vw, 72px);
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.intro-copy {
  max-width: 490px;
  padding-top: 8px;
}

.intro-copy p {
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: 17px;
}

.universes {
  padding: clamp(72px, 8vw, 110px) 0 clamp(110px, 14vw, 200px);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}

.section-heading .section-title {
  max-width: 760px;
}

.universe-list {
  display: grid;
  gap: 8px;
}

.universe-card {
  display: grid;
  min-height: 72vh;
  grid-template-columns: 0.76fr 1.24fr;
  overflow: hidden;
  background: var(--cream);
}

.universe-card:nth-child(even) {
  grid-template-columns: 1.24fr 0.76fr;
}

.universe-card:nth-child(even) .universe-media {
  order: -1;
}

.universe-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 7vw, 104px);
}

.universe-copy p:not(.eyebrow) {
  max-width: 460px;
  margin: 30px 0 38px;
  color: var(--ink-soft);
  font-size: 16px;
}

.universe-media,
.photo-slot {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--taupe);
}

.hero-media > img,
.universe-media > img,
.photo-slot > img {
  position: absolute;
  inset: 0;
}

.universe-media > img,
.gallery-item .photo-slot > img {
  transition: filter 0.8s var(--ease), transform 0.8s var(--ease);
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.22), transparent 25%),
    linear-gradient(145deg, var(--placeholder-a, #82766c), var(--placeholder-b, #b5a594));
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.photo-placeholder::before,
.photo-placeholder::after {
  position: absolute;
  content: "";
  opacity: 0.22;
}

.photo-placeholder::before {
  top: 15%;
  left: 12%;
  width: 48%;
  height: 55%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: rotate(-3deg);
}

.photo-placeholder::after {
  right: 9%;
  bottom: 8%;
  width: 42%;
  height: 40%;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.42);
}

.photo-placeholder .placeholder-note {
  max-width: 315px;
}

.universe-card:hover .photo-placeholder,
.gallery-item:hover .photo-placeholder {
  filter: saturate(0.82);
  transform: scale(1.018);
}

.universe-card:hover .universe-media > img,
.gallery-item:hover .photo-slot > img {
  filter: saturate(0.92);
  transform: scale(1.018);
}

.approach-band {
  padding: clamp(90px, 12vw, 170px) 0;
  color: var(--white);
  background: var(--brown);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 150px);
}

.approach-band .eyebrow {
  color: rgba(255, 255, 255, 0.64);
}

.approach-quote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.approach-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.approach-copy p {
  max-width: 570px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.featured-work {
  padding: clamp(110px, 14vw, 200px) 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 8px;
}

.featured-grid .photo-slot:first-child {
  min-height: 750px;
}

.featured-grid__side {
  display: grid;
  gap: 8px;
}

.featured-grid__side .photo-slot {
  min-height: 371px;
}

.cta-section {
  padding: clamp(90px, 12vw, 170px) 0;
  border-top: 1px solid var(--line);
}

.cta-section--home {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(24px, 3.5vw, 44px);
}

main > .cta-section:first-child {
  margin-top: 71px;
}

.cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.cta-title {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 82px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.cta-section .arrow-link {
  flex-shrink: 0;
  margin-bottom: 8px;
}

.page-hero {
  padding: clamp(180px, 19vw, 270px) 0 clamp(80px, 10vw, 140px);
}

.page-hero .lead {
  margin-top: 44px;
  margin-left: min(20vw, 290px);
}

.page-hero--compact {
  padding-bottom: 44px;
}

.page-hero--services {
  padding-bottom: clamp(52px, 6vw, 78px);
}

.filters-wrap {
  position: sticky;
  z-index: 20;
  top: 71px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

main > .filters-wrap:first-child {
  margin-top: 71px;
}

.filters {
  display: flex;
  gap: 10px 34px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--ink);
  color: var(--ink);
}

.portfolio-section {
  padding: 36px 0 clamp(90px, 10vw, 140px);
}

.portfolio-showcase {
  width: min(calc(100% - 48px), 1480px);
  margin: 0 auto clamp(56px, 7vw, 96px);
}

.portfolio-showcase__frame,
.service-carousel__stage {
  position: relative;
  display: grid;
  min-height: min(74svh, 820px);
  overflow: hidden;
  background: #211d1a;
  place-items: center;
}

.portfolio-showcase__frame > img,
.service-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portfolio-showcase__frame > img {
  position: absolute;
  inset: 0;
}

.gallery-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(24, 21, 19, 0.4);
  color: var(--white);
  font-size: 21px;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  border-color: var(--white);
  background: rgba(24, 21, 19, 0.72);
}

.gallery-arrow--previous {
  left: clamp(14px, 2.5vw, 36px);
}

.gallery-arrow--next {
  right: clamp(14px, 2.5vw, 36px);
}

.portfolio-showcase__meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portfolio-note {
  max-width: 600px;
  margin: 0 0 68px;
  color: var(--ink-soft);
  font-size: 14px;
}

.gallery-grid {
  column-count: 3;
  column-gap: 18px;
}

.gallery-item {
  margin: 0 0 18px;
  opacity: 1;
  break-inside: avoid;
  transition: opacity 0.35s ease;
}

.gallery-item:nth-child(3n + 2) {
  grid-column: auto;
  padding-top: 0;
}

.gallery-item:nth-child(3n + 3) {
  grid-column: auto;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.gallery-item .photo-slot {
  min-height: 0;
  aspect-ratio: auto;
}

.gallery-item:nth-child(3n + 2) .photo-slot {
  aspect-ratio: auto;
}

.gallery-item .photo-slot > img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gallery-caption {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 16px;
}

.gallery-caption strong {
  display: none;
}

.gallery-caption span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: right;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  padding: 78px clamp(20px, 5vw, 80px) 30px;
  background: rgba(30, 26, 23, 0.97);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 31px;
  font-weight: 200;
  line-height: 1;
}

.lightbox-content {
  display: grid;
  width: min(100%, 1120px);
  max-height: calc(100svh - 112px);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 15px;
}

.lightbox-media {
  position: relative;
  min-height: min(68svh, 700px);
  overflow: hidden;
  background: var(--taupe);
}

.lightbox-media .photo-placeholder {
  transform: none !important;
}

.lightbox-media img {
  object-fit: contain;
}

.lightbox-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.services-intro {
  padding: clamp(130px, 12vw, 180px) 0 64px;
}

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

.service-row {
  display: grid;
  min-height: 0;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(42px, 6vw, 90px);
  align-items: center;
  padding: clamp(56px, 6vw, 88px) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.service-row:nth-child(even) {
  grid-template-columns: 1.08fr 0.92fr;
}

.service-row:nth-child(even) .service-visual {
  order: -1;
}

.service-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--taupe);
  font-family: var(--serif);
  font-size: 24px;
}

.service-copy > p {
  max-width: 520px;
  margin: 30px 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.service-details {
  display: grid;
  gap: 0;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.service-details li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-categories {
  margin: 0 0 40px;
}

.service-categories p {
  margin: 0 0 13px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-categories div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.service-categories a {
  scroll-margin-top: 120px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.service-categories a:hover,
.service-categories a:focus-visible,
.service-categories a:target {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.service-copy > .arrow-link {
  min-width: min(100%, 270px);
  min-height: 54px;
  justify-content: space-between;
  padding: 0 22px;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(40, 35, 31, 0.14);
  color: var(--paper);
  font-size: 12px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease);
}

.service-copy > .arrow-link::after {
  display: none;
}

.service-copy > .arrow-link:hover,
.service-copy > .arrow-link:focus-visible {
  background: var(--brown);
  box-shadow: 0 16px 34px rgba(40, 35, 31, 0.2);
  transform: translateY(-2px);
}

.service-carousel__stage {
  min-height: min(68svh, 720px);
}

.service-slide {
  position: absolute;
  inset: 0;
  margin: 0;
}

.service-slide[hidden] {
  display: none;
}

.service-carousel__counter {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 17px;
  padding: 7px 10px;
  background: rgba(24, 21, 19, 0.48);
  color: rgba(255, 255, 255, 0.9);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.service-carousel__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 6px;
}

.service-carousel__thumb {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #211d1a;
  place-items: center;
}

.service-carousel__thumb::after {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  content: "";
  transition: border-color 0.2s ease;
}

.service-carousel__thumb[aria-current="true"]::after {
  border-color: var(--ink);
}

.service-carousel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.service-carousel__thumb:hover img,
.service-carousel__thumb[aria-current="true"] img {
  opacity: 1;
}

.process {
  padding: clamp(100px, 13vw, 180px) 0;
  color: var(--white);
  background: var(--brown);
}

.process .section-heading {
  margin-bottom: 80px;
}

.process .section-heading .arrow-link {
  flex-shrink: 0;
  margin-bottom: 8px;
}

.process .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.process-step {
  min-height: 290px;
  padding: 32px 42px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.process-step:not(:first-child) {
  padding-left: 42px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--serif);
  font-size: 22px;
}

.process-step h3 {
  margin: 48px 0 17px;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.process-grid--titles .process-step {
  display: flex;
  min-height: 160px;
  align-items: center;
}

.process-grid--titles .process-step h3 {
  margin: 0;
}

.about-intro {
  padding: 0 0 clamp(100px, 13vw, 180px);
}

.about-intro--first {
  padding-top: clamp(145px, 15vw, 205px);
  padding-bottom: clamp(44px, 5vw, 72px);
}

.about-intro--first + .territory {
  padding-top: clamp(20px, 2.5vw, 38px);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 165px);
  align-items: center;
}

.about-portrait .photo-slot {
  min-height: 760px;
}

.about-portrait .photo-slot > img {
  object-position: 57% center;
}

.about-copy .section-title {
  margin-bottom: 42px;
}

.about-copy p:not(.eyebrow) {
  max-width: 630px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 17px;
}

.about-signature {
  margin-top: 42px !important;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: 34px !important;
  font-style: italic;
}

.values {
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.value {
  padding: 32px 42px 0 0;
  border-right: 1px solid var(--line);
}

.value:not(:first-child) {
  padding-left: 42px;
}

.value:last-child {
  border-right: 0;
}

.value span {
  color: var(--taupe);
  font-family: var(--serif);
  font-size: 22px;
}

.value h3 {
  margin: 46px 0 18px;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.value p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.territory {
  padding: clamp(110px, 14vw, 190px) 0;
}

.territory-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: end;
}

.territory-copy p {
  max-width: 650px;
  margin: 36px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.territory-copy .territory-travel-note {
  max-width: 610px;
  margin-top: 26px;
  padding: 18px 22px;
  border-left: 2px solid var(--brown);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.3;
}

.territory-actions {
  align-self: end;
}

.territory-meta {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.territory-meta p {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.territory-actions .arrow-link {
  margin-top: 28px;
}

.contact-page {
  min-height: 100vh;
  padding: clamp(130px, 14vw, 185px) 0 110px;
}

.contact-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(70px, 10vw, 130px);
}

.contact-heading .lead {
  max-width: 540px;
  padding-bottom: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(70px, 10vw, 160px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-portrait {
  width: 112px;
  height: 112px;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.contact-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.32);
  transform-origin: 50% 34%;
}

.contact-details h2 {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.contact-details address {
  margin-bottom: 40px;
  color: var(--ink-soft);
  font-style: normal;
  line-height: 2;
}

.contact-details address strong {
  color: var(--ink);
  font-weight: 600;
}

.contact-details a:not(.text-link) {
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s ease;
}

.contact-details a:hover {
  border-color: var(--ink);
}

.contact-socials {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 22px;
}

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

.form-field {
  display: grid;
  gap: 9px;
}

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

.form-field label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 0 13px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 15px;
  transition: border-color 0.2s ease;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #958b82;
}

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

.form-field select {
  appearance: none;
  background: linear-gradient(45deg, transparent 50%, var(--ink) 50%) calc(100% - 7px) 50% / 5px 5px no-repeat,
    linear-gradient(135deg, var(--ink) 50%, transparent 50%) calc(100% - 2px) 50% / 5px 5px no-repeat;
}

.form-consent {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.submit-button {
  display: inline-flex;
  min-height: 56px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 9px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease;
}

.submit-button:hover {
  color: var(--ink);
  background: transparent;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 15px 17px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 13px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: rgba(65, 99, 72, 0.35);
  background: rgba(222, 233, 220, 0.55);
  color: #304c36;
}

.form-status.is-error {
  border-color: rgba(140, 69, 54, 0.35);
  background: rgba(244, 225, 220, 0.62);
  color: #713c31;
}

.site-footer {
  padding: 82px 0 34px;
  color: var(--ink);
  background: var(--sand);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding-bottom: 80px;
}

.footer-name {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 70px);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.footer-tagline {
  margin: 19px 0 0;
  color: rgba(40, 35, 31, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-content: start;
}

.footer-links p {
  margin: 0 0 17px;
  color: rgba(40, 35, 31, 0.56);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-links nav {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(40, 35, 31, 0.82);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(40, 35, 31, 0.18);
  color: rgba(40, 35, 31, 0.58);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.error-page {
  display: grid;
  min-height: 100svh;
  padding: 120px 24px 70px;
  place-items: center;
  text-align: center;
}

.error-code {
  margin: 0;
  color: var(--sand);
  font-family: var(--serif);
  font-size: clamp(130px, 25vw, 330px);
  line-height: 0.72;
}

.error-page h1 {
  margin: 40px 0 17px;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
}

.error-page p {
  max-width: 500px;
  margin: 0 auto 33px;
  color: var(--ink-soft);
}

.legal-page {
  padding: clamp(160px, 18vw, 240px) 0 120px;
}

.legal-page__header {
  max-width: 850px;
  margin-bottom: 80px;
}

.legal-content {
  max-width: 850px;
}

.legal-notice {
  margin-bottom: 55px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 13px;
}

.legal-content section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 980px) {
  .gallery-grid {
    column-count: 2;
  }

  :root {
    --page: min(100% - 40px, 1340px);
    --narrow: min(100% - 40px, 920px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-nav {
    display: block;
  }

  .mobile-nav {
    overflow-y: auto;
  }

  .mobile-nav__footer {
    position: static;
    margin-top: 30px;
  }

  .intro-grid,
  .approach-grid,
  .about-grid,
  .territory-grid,
  .contact-heading,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 55px;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }

  .universe-card,
  .universe-card:nth-child(even) {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .universe-card:nth-child(even) .universe-media {
    order: 0;
  }

  .universe-copy {
    min-height: 430px;
  }

  .universe-media {
    min-height: 600px;
  }

  .featured-grid .photo-slot:first-child {
    min-height: 620px;
  }

  .service-row,
  .service-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .service-row:nth-child(even) .service-visual {
    order: 0;
  }

  .about-grid {
    gap: 75px;
  }

  .about-portrait {
    width: min(82%, 620px);
  }

  .contact-heading {
    gap: 40px;
  }

  .contact-layout {
    gap: 80px;
  }

  .contact-socials {
    margin-top: 20px;
  }
}

@media (max-width: 720px) {
  :root {
    --page: min(100% - 28px, 1340px);
    --narrow: min(100% - 28px, 920px);
  }

  body {
    font-size: 14px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-active {
    height: 68px;
  }

  .mobile-nav {
    padding: 82px 16px 20px;
  }

  .mobile-nav__links > a,
  .mobile-services summary {
    font-size: clamp(27px, 8.2vw, 36px);
  }

  .mobile-services-menu {
    padding-top: 13px;
  }

  .mobile-services-menu__title {
    font-size: 18px !important;
  }

  .mobile-services-menu__group {
    grid-template-columns: minmax(102px, 0.8fr) minmax(0, 1.35fr);
    gap: 14px;
    padding: 9px 0;
  }

  .mobile-nav__footer {
    margin-top: 24px;
  }

  .brand {
    font-size: 21px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 124px;
    padding-bottom: 168px;
  }

  .hero .eyebrow {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    margin-bottom: 0;
  }

  .hero .display-title {
    font-size: clamp(48px, 14.5vw, 64px);
    line-height: 0.88;
  }

  .hero-placeholder {
    padding: 18px 14px;
  }

  .hero-placeholder::before {
    top: 18%;
    right: 12%;
    width: 48%;
    height: 42%;
  }

  .placeholder-note {
    max-width: 290px;
    padding: 9px 11px;
    font-size: 7px;
  }

  .hero-bottom {
    display: block;
    margin-top: 30px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
  }

  .hero .text-link {
    margin-top: 0;
  }

  .hero-universes {
    min-height: 105px;
  }

  .hero-universes a {
    align-items: flex-start;
    justify-content: center;
    padding: 16px 12px;
  }

  .hero-universes strong {
    font-size: clamp(17px, 5vw, 22px);
    line-height: 1.05;
  }

  .section-heading,
  .cta-inner {
    display: block;
  }

  .section-heading .text-link,
  .section-heading .arrow-link,
  .cta-inner .arrow-link {
    margin-top: 32px;
  }

  .universe-copy {
    min-height: 380px;
    padding: 46px 27px;
  }

  .universe-media {
    min-height: 480px;
  }

  .approach-grid {
    gap: 55px;
  }

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

  .featured-grid .photo-slot:first-child,
  .featured-grid__side .photo-slot {
    min-height: 500px;
  }

  .featured-grid__side .photo-slot:last-child {
    min-height: 400px;
  }

  .page-hero {
    padding-top: 152px;
  }

  .page-hero .lead {
    margin-top: 36px;
    margin-left: 0;
  }

  .filters-wrap {
    top: 67px;
  }

  .filters {
    margin-right: -14px;
  }

  .gallery-grid {
    column-count: 1;
  }

  .gallery-item,
  .gallery-item:nth-child(3n + 2),
  .gallery-item:nth-child(3n + 3) {
    grid-column: auto;
    padding-top: 0;
  }

  .gallery-caption {
    display: block;
  }

  .gallery-caption span {
    display: block;
    margin-top: 6px;
    text-align: left;
  }

  .lightbox {
    padding-inline: 14px;
  }

  .lightbox-media {
    min-height: 66svh;
  }

  .service-row,
  .service-row:nth-child(even) {
    gap: 48px;
  }

  .portfolio-showcase {
    width: 100%;
    margin-bottom: 46px;
  }

  .portfolio-showcase__frame,
  .service-carousel__stage {
    min-height: 64svh;
  }

  .portfolio-showcase__meta {
    padding-inline: 14px;
  }

  .gallery-arrow {
    width: 44px;
    height: 44px;
  }

  .service-carousel__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:not(:first-child),
  .value,
  .value:not(:first-child) {
    min-height: 0;
    padding: 30px 0 40px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .value,
  .value:not(:first-child) {
    border-bottom-color: var(--line);
  }

  .process-step:last-child,
  .value:last-child {
    border-bottom: 0;
  }

  .process-step h3,
  .value h3 {
    margin-top: 28px;
  }

  .about-portrait {
    width: 100%;
  }

  .about-portrait .photo-slot {
    min-height: 570px;
  }

  .contact-page {
    padding-top: 146px;
  }

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

  .form-field--full,
  .form-consent,
  .submit-button,
  .form-status {
    grid-column: auto;
  }

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

  .footer-top {
    gap: 60px;
    padding-bottom: 60px;
  }

  .footer-links {
    gap: 36px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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