:root {
  --bg: #f4efe7;
  --bg-soft: #fbf8f2;
  --surface: #fffcf8;
  --surface-strong: #f0e8db;
  --ink: #171513;
  --ink-soft: #2c2925;
  --muted: #655d53;
  --line: #d8cdbd;
  --line-strong: #c6b9a6;
  --accent: #9f8463;
  --container: min(1320px, calc(100% - 3rem));
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 12px 36px rgba(17, 16, 14, 0.12);
  --shadow-medium: 0 28px 58px rgba(13, 12, 11, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

h1,
h2,
h3,
.section-title,
.page-hero h1,
.home-hero h1,
.project-teaser h3,
.project-archive-card h3,
.gallery-featured-card__overlay h2 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

body.is-loading {
  overflow: hidden;
}

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

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

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

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

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section--tight {
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--muted);
}

.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0.012em;
  font-weight: 600;
  text-wrap: balance;
}

.section-intro {
  margin: 1rem 0 0;
  max-width: 68ch;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.section-intro--narrow {
  max-width: 54ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.82rem 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

.btn--primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn--primary:hover {
  background: #000;
}

.btn--secondary {
  background: var(--surface);
  color: var(--ink-soft);
  border-color: var(--line);
}

.btn--secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f9f5ed;
  border-color: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn--outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.text-link::after {
  content: "->";
  transition: transform 220ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: #151412;
  color: #f4eee2;
  display: grid;
  place-items: center;
  transition: opacity 540ms ease, visibility 540ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-loader__brand {
  margin: 0 0 0.9rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-size: 0.77rem;
}

.site-loader__line {
  display: block;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d5bc97 40%, #d5bc97 60%, transparent 100%);
  animation: loaderPulse 1.15s ease infinite;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scaleX(0.72);
    opacity: 0.4;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  padding: 1rem 0;
  transition: background-color 240ms ease, backdrop-filter 240ms ease, border-color 240ms ease, padding 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 239, 228, 0.84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198, 186, 170, 0.62);
  padding: 0.75rem 0;
}

.site-header.is-internal {
  background: rgba(246, 239, 228, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198, 186, 170, 0.62);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.015em;
  color: #fbf7ef;
}

.brand__sub {
  margin-top: 0.14rem;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(247, 240, 230, 0.84);
}

.site-header.is-scrolled .brand__name,
.site-header.is-internal .brand__name {
  color: var(--ink);
}

.site-header.is-scrolled .brand__sub,
.site-header.is-internal .brand__sub {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  color: rgba(251, 247, 241, 0.92);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.73rem;
  padding-bottom: 0.2rem;
}

.site-header.is-scrolled .site-nav a,
.site-header.is-internal .site-nav a {
  color: var(--ink);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22rem;
  height: 1px;
  width: 0;
  background: currentColor;
  transition: width 220ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.header-cta {
  color: #f8f3ea;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(18, 17, 16, 0.18);
}

.site-header.is-scrolled .header-cta,
.site-header.is-internal .header-cta {
  color: var(--ink);
  border-color: rgba(37, 34, 30, 0.26);
  background: rgba(255, 255, 255, 0.6);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  display: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 4px auto;
  background: #fff;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-internal .menu-toggle {
  border-color: rgba(37, 34, 30, 0.24);
  background: rgba(255, 255, 255, 0.7);
}

.site-header.is-scrolled .menu-toggle span,
.site-header.is-internal .menu-toggle span {
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(380px, 94vw);
  transform: translateX(100%);
  background: #171512;
  color: #f8f4eb;
  z-index: 1250;
  transition: transform 260ms ease;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.2rem 1.5rem;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__close {
  align-self: flex-end;
  border: none;
  background: transparent;
  color: #f8f4eb;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu__nav {
  display: grid;
  gap: 0.64rem;
  margin-top: 0.4rem;
}

.mobile-menu__nav a {
  padding-bottom: 0.68rem;
  border-bottom: 1px solid rgba(249, 242, 230, 0.15);
  letter-spacing: 0.11em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.mobile-menu__nav a.is-active {
  color: #dbc39f;
}

.mobile-menu__cta {
  margin-top: auto;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1240;
  background: rgba(10, 9, 8, 0.5);
  backdrop-filter: blur(2px);
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.page-hero {
  min-height: 70vh;
}

.home-hero__media,
.page-hero__media {
  position: absolute;
  inset: 0;
}

.home-hero__media img,
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.07);
  animation: heroZoomIn 3.2s ease forwards;
}

@keyframes heroZoomIn {
  to {
    transform: scale(1);
  }
}

.home-hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 13, 12, 0.18) 0%, rgba(11, 10, 9, 0.74) 62%, rgba(10, 10, 9, 0.9) 100%),
    linear-gradient(90deg, rgba(12, 12, 11, 0.72) 0%, rgba(11, 10, 9, 0.16) 60%, rgba(11, 10, 9, 0.28) 100%);
}

.home-hero__content,
.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
}

.home-hero__label,
.page-hero__label {
  margin: 0 0 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 242, 233, 0.88);
}

.home-hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.1rem, 8.1vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
}

.home-hero__subtitle,
.page-hero__subtitle {
  margin: 1.3rem 0 2.1rem;
  max-width: 52ch;
  color: rgba(247, 242, 234, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.home-hero__actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.home-hero__meta {
  position: absolute;
  right: clamp(1.4rem, 4vw, 4rem);
  bottom: 6rem;
  z-index: 2;
  max-width: 350px;
  border-left: 1px solid rgba(249, 242, 232, 0.58);
  padding-left: 1rem;
}

.home-hero__meta p {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero__meta strong {
  display: block;
  margin-top: 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.home-hero__meta span {
  color: rgba(246, 240, 230, 0.9);
  font-size: 0.84rem;
}

.scroll-indicator {
  position: absolute;
  left: clamp(1.4rem, 4vw, 4rem);
  bottom: 2rem;
  width: 28px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: grid;
  place-items: center;
  z-index: 2;
}

.scroll-indicator span {
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  animation: scrollPulse 1.55s ease infinite;
}

@keyframes scrollPulse {
  0% {
    transform: translateY(-6px);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    transform: translateY(6px);
    opacity: 0;
  }
}

.studio-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.studio-intro p {
  margin: 0 0 1rem;
  max-width: 64ch;
  color: var(--ink-soft);
}

.metric-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-list li {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.metric-list strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 1;
}

.metric-list span {
  display: block;
  font-size: 0.81rem;
  color: var(--muted);
}

.project-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  grid-auto-rows: 252px;
  gap: 1.15rem;
}

.home-section-actions {
  margin-top: 1.55rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.home-selected-section .section-title,
.home-team-section .section-title {
  max-width: 16ch;
}

.home-selected-section .section-intro,
.home-team-section .section-intro {
  margin-top: 0.88rem;
}

.home-selected-section .project-featured-grid,
.home-team-section .team-preview-grid {
  margin-top: 1.75rem;
}

.project-teaser {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 252px;
  box-shadow: 0 18px 38px rgba(14, 12, 10, 0.16);
  border: 1px solid rgba(220, 209, 192, 0.28);
  transition: transform 380ms ease, box-shadow 380ms ease, border-color 280ms ease;
  isolation: isolate;
}

.project-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(160deg, rgba(255, 248, 235, 0.2) 0%, rgba(255, 248, 235, 0) 34%);
}

.project-teaser--primary {
  grid-row: span 2;
  min-height: 520px;
}

.project-teaser:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(14, 11, 9, 0.24);
  border-color: rgba(226, 214, 195, 0.48);
}

.project-teaser__media-wrap,
.project-teaser__media {
  width: 100%;
  height: 100%;
}

.project-teaser__media {
  object-fit: cover;
  transition: transform 760ms ease, filter 420ms ease;
  filter: saturate(0.84) contrast(1.08) brightness(0.8);
}

.project-teaser--primary .project-teaser__media {
  filter: saturate(0.9) contrast(1.08) brightness(0.78);
}

.project-teaser:hover .project-teaser__media {
  transform: scale(1.06);
  filter: saturate(0.96) contrast(1.08) brightness(0.86);
}

.project-teaser__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(1.2rem, 2.2vw, 1.9rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.42rem;
  color: #fbf8f2;
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0) 24%, rgba(11, 10, 9, 0.8) 74%, rgba(10, 9, 8, 0.95) 100%),
    linear-gradient(130deg, rgba(7, 6, 5, 0.44) 0%, rgba(7, 6, 5, 0.08) 48%, rgba(7, 6, 5, 0.5) 100%);
}

.project-teaser__kicker {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.85);
}

.project-teaser h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
  text-wrap: balance;
}

.project-teaser:not(.project-teaser--primary) h3 {
  font-size: clamp(1.85rem, 2.35vw, 2.35rem);
}

.project-teaser__meta {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(246, 241, 232, 0.9);
}

.project-teaser__desc {
  margin: 0.25rem 0 0.92rem;
  max-width: 38ch;
  color: rgba(245, 240, 230, 0.93);
  line-height: 1.48;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-teaser--primary .project-teaser__desc {
  -webkit-line-clamp: 3;
}

.project-teaser .btn {
  align-self: flex-start;
  padding-inline: 1.34rem;
  min-width: min(230px, 100%);
}

.projects-featured-strip {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.projects-featured-item {
  grid-column: span 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(204, 191, 172, 0.86);
  box-shadow: 0 14px 32px rgba(17, 14, 10, 0.08);
}

.projects-featured-item.is-priority {
  grid-column: span 6;
}

.projects-featured-item a {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: stretch;
  min-height: 180px;
}

.projects-featured-item img {
  height: 100%;
  object-fit: cover;
}

.projects-featured-item div {
  padding: 1.05rem;
  display: grid;
  align-content: end;
  gap: 0.3rem;
}

.projects-featured-item p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.66rem;
  color: var(--muted);
}

.projects-featured-item h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 0.95;
}

.projects-featured-item span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.project-archive-shell {
  margin-top: 3rem;
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.98) 0%, rgba(249, 244, 236, 0.92) 100%);
  border: 1px solid rgba(203, 191, 173, 0.78);
  border-radius: 30px;
  padding: clamp(1.4rem, 3.2vw, 2.6rem);
  box-shadow: 0 20px 38px rgba(16, 13, 10, 0.06);
}

.project-archive-shell__head {
  max-width: 72ch;
  margin-bottom: 1.6rem;
}

.project-archive-shell__head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 1;
}

.project-archive-shell__head p {
  margin: 0.62rem 0 0;
  color: var(--ink-soft);
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.36rem;
  overflow-x: auto;
  padding: 0.4rem;
  border-radius: 14px;
  border: 1px solid rgba(205, 193, 175, 0.84);
  background: rgba(255, 255, 255, 0.74);
  position: static;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  padding: 0.38rem 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.64rem;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  white-space: nowrap;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.filter-pill.is-active,
.filter-pill:hover {
  background: var(--ink);
  color: #f8f4ec;
}

.filter-pill__count {
  font-style: normal;
  letter-spacing: 0.02em;
  font-size: 0.56rem;
  opacity: 0.7;
}

.project-archive-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  transition: opacity 240ms ease, transform 240ms ease;
}

.project-archive-grid.archive-grid--single,
.project-archive-grid.archive-grid--two,
.project-archive-grid.archive-grid--few {
  max-width: 1120px;
  margin-inline: auto;
}

.project-archive-grid.archive-grid--single {
  max-width: 980px;
}

.project-archive-grid.is-filter-changing {
  opacity: 0.22;
  transform: translateY(8px);
}

.project-archive-card {
  grid-column: span 6;
  min-height: clamp(320px, 30vw, 430px);
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: #121111;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 20px 44px rgba(12, 11, 10, 0.16);
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
}

.project-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(11, 10, 9, 0.24);
  border-color: rgba(229, 216, 197, 0.55);
}

.project-archive-card.is-span-12 {
  grid-column: span 12;
  min-height: clamp(360px, 40vw, 520px);
  aspect-ratio: 16 / 9;
}

.project-archive-card.is-span-6 {
  grid-column: span 6;
}

.project-archive-card.is-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 12, 10, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.project-archive-card__media-wrap,
.project-archive-card__media {
  width: 100%;
  height: 100%;
}

.project-archive-card__media {
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.project-archive-card:hover .project-archive-card__media {
  transform: scale(1.08);
}

.project-archive-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(1.15rem, 2.2vw, 1.8rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(12, 12, 10, 0.03) 18%, rgba(9, 9, 8, 0.92) 100%);
  color: #f7f2e8;
}

.project-archive-card__overlay > * {
  min-width: 0;
}

.project-archive-card__meta {
  margin: 0 0 auto;
  font-size: 0.65rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.88);
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.34rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 240, 232, 0.34);
  background: rgba(8, 8, 7, 0.24);
}

.project-archive-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-archive-card.is-span-6 h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.05rem);
}

.project-archive-card.is-span-12 h3 {
  font-size: clamp(2.05rem, 3.2vw, 2.8rem);
}

.project-archive-card__location {
  margin: 0.24rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.project-archive-card__desc {
  margin: 0.68rem 0 0.9rem;
  color: rgba(245, 239, 230, 0.92);
  max-width: 52ch;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-archive-card__cta {
  width: fit-content;
  display: inline-flex;
  justify-content: center;
  text-align: center;
}

.project-archive-empty {
  grid-column: span 12;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.project-archive-empty h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.project-archive-empty p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.archive-actions {
  margin-top: 1.45rem;
  display: flex;
  justify-content: center;
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.92rem;
}

.service-preview {
  border: 1px solid rgba(206, 194, 176, 0.9);
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  min-height: 220px;
  position: relative;
}

.service-preview::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 17px;
  height: 17px;
  border-top: 1px solid rgba(159, 132, 99, 0.72);
  border-right: 1px solid rgba(159, 132, 99, 0.72);
}

.service-preview__num {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  color: rgba(159, 132, 99, 0.96);
  line-height: 1;
}

.service-preview h3 {
  margin: 0.65rem 0 0.44rem;
  font-size: 1rem;
}

.service-preview p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.team-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.team-preview-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 460px;
  margin-inline: auto;
}

.team-preview-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 252, 246, 0.15) 0%, rgba(255, 252, 246, 0) 42%),
    linear-gradient(165deg, #24221f 0%, #121110 64%, #0f0e0d 100%);
  min-height: 360px;
  aspect-ratio: 4 / 5;
  position: relative;
  border: 1px solid rgba(220, 209, 192, 0.36);
  box-shadow: 0 16px 34px rgba(15, 12, 10, 0.15);
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 280ms ease;
}

.team-preview-card__link {
  display: block;
  width: 100%;
  height: 100%;
}

.team-preview-card img {
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(0.28) contrast(1.04) brightness(0.94);
  transition: transform 480ms ease, filter 340ms ease;
}

.team-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(14, 11, 9, 0.22);
  border-color: rgba(230, 218, 199, 0.62);
}

.team-preview-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0.08) contrast(1.08) brightness(1.02);
}

.team-preview-card__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.06rem;
  color: #f8f4eb;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0) 12%, rgba(9, 9, 9, 0.84) 74%, rgba(9, 9, 9, 0.95) 100%),
    linear-gradient(120deg, rgba(12, 11, 10, 0.65) 0%, rgba(12, 11, 10, 0.22) 100%);
}

.team-preview-card__info h3 {
  margin: 0;
  font-size: 1.38rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  letter-spacing: 0.01em;
}

.team-preview-card__info p {
  margin: 0.26rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.66rem;
  color: rgba(248, 243, 233, 0.85);
}

.team-preview-card__info span {
  margin-top: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 243, 232, 0.88);
}

.team-preview-card__info span::after {
  content: "->";
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-preview-item {
  margin: 0;
  grid-column: span 4;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #121212;
  min-height: 260px;
  border: 1px solid rgba(214, 202, 184, 0.8);
}

.gallery-preview-item.is-featured {
  grid-column: span 6;
  min-height: 300px;
}

.gallery-preview-item.is-full {
  grid-column: span 12;
  min-height: 340px;
}

.gallery-preview-item img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02) brightness(0.96);
  transition: transform 520ms ease;
}

.gallery-preview-item:hover img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.04) brightness(1);
}

.gallery-preview-item figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  font-size: 0.72rem;
  padding: 0.45rem 0.6rem;
  color: #f8f3ea;
  border-radius: 8px;
  background: rgba(9, 9, 8, 0.6);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-preview-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.cta-panel {
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3.1vw, 2.1rem);
  background: linear-gradient(135deg, #1a1815 0%, #24211c 62%, #1e1b17 100%);
  color: #f8f3ea;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr auto;
  align-items: center;
}

.cta-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 0.95;
}

.cta-panel p {
  margin: 0.65rem 0 0;
  color: rgba(245, 240, 230, 0.88);
}

.contact-inline {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  font-size: 0.85rem;
  color: rgba(244, 238, 227, 0.85);
}

.contact-inline a,
.team-lead-profile__mail,
.team-contact-cta__mail,
.contact-data a {
  overflow-wrap: anywhere;
}

.page-main {
  padding-top: 6.2rem;
}

.surface-panel {
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(208, 196, 178, 0.8);
  border-radius: 28px;
  padding: clamp(1.3rem, 2.8vw, 2.2rem);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.detail-meta-grid div {
  border-top: 1px solid var(--line);
  padding-top: 0.6rem;
}

.detail-meta-grid dt {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: var(--muted);
}

.detail-meta-grid dd {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
}

.detail-gallery-item {
  margin: 0;
  grid-column: span 4;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
}

.detail-gallery-item.is-wide {
  grid-column: span 8;
}

.detail-gallery-item__button,
.plan-thumb__button,
.gallery-page-item__button,
.team-page-card__button {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.detail-gallery-item img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.detail-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.plan-thumb {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.plan-thumb img {
  min-height: 160px;
  object-fit: cover;
}

.next-project-link {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1rem;
  align-items: stretch;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.next-project-link img {
  height: 100%;
  object-fit: cover;
}

.next-project-link div {
  padding: 1rem;
  display: grid;
  align-content: center;
  gap: 0.3rem;
}

.next-project-link p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.66rem;
  color: var(--muted);
}

.next-project-link h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
}

.next-project-link span {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  color: var(--ink-soft);
}

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

.related-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.related-card a {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 140px;
}

.related-card img {
  height: 100%;
  object-fit: cover;
}

.related-card div {
  padding: 0.9rem;
  display: grid;
  align-content: end;
  gap: 0.2rem;
}

.related-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 0.95;
}

.related-card p {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-soft);
}

.studio-values {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.studio-values li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.6);
}

.studio-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.studio-team-card {
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  position: relative;
  min-height: 260px;
}

.studio-team-card img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.studio-team-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem;
  color: #f8f3ea;
  background: linear-gradient(180deg, transparent 14%, rgba(8, 8, 8, 0.86) 100%);
}

.studio-team-card h3 {
  margin: 0;
  font-size: 1rem;
}

.studio-team-card p {
  margin: 0.2rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
}

.team-studio-intro {
  margin-bottom: 1.6rem;
}

.team-lead-profile {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(203, 191, 173, 0.9);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(251, 246, 238, 0.88) 100%);
  box-shadow: 0 22px 42px rgba(16, 13, 10, 0.08);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
}

.team-lead-profile__media img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: 62% 18%;
}

.team-lead-profile__content {
  padding: clamp(1.2rem, 3vw, 2.1rem);
  display: grid;
  align-content: center;
}

.team-lead-profile__content h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
  line-height: 0.92;
}

.team-lead-profile__role {
  margin: 0.48rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
}

.team-lead-profile__bio {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  max-width: 44ch;
}

.team-lead-profile__mail {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-bottom: 1px solid rgba(43, 40, 36, 0.35);
  padding-bottom: 0.24rem;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.team-lead-profile__mail:hover {
  border-bottom-color: var(--ink);
}

.team-roster-shell {
  margin-top: 2rem;
}

.team-roster-shell__head h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 0.96;
}

.team-roster-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-roster-card {
  border: 1px solid rgba(203, 191, 173, 0.84);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: border-color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.team-roster-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(17, 14, 10, 0.08);
}

.team-roster-card.is-open {
  border-color: rgba(159, 132, 99, 0.72);
}

.team-roster-card__button {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.team-roster-card__media img {
  height: 300px;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 520ms ease;
}

.team-roster-card:hover .team-roster-card__media img {
  transform: scale(1.03);
}

.team-roster-card__headline {
  padding: 0.95rem;
}

.team-roster-card__headline h3 {
  margin: 0;
  font-size: 1.08rem;
}

.team-roster-card__headline p {
  margin: 0.2rem 0 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}

.team-roster-card__toggle {
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.team-roster-card__details {
  border-top: 1px solid rgba(212, 200, 182, 0.8);
  padding: 0 0.95rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 260ms ease, opacity 260ms ease, padding 260ms ease;
}

.team-roster-card.is-open .team-roster-card__details {
  max-height: 240px;
  opacity: 1;
  padding: 0.95rem;
}

.team-roster-card__details p {
  margin: 0 0 0.8rem;
  color: var(--ink-soft);
}

.team-contact-cta {
  margin-top: 1.8rem;
  border: 1px solid rgba(203, 191, 173, 0.84);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(1rem, 2.6vw, 1.6rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.team-contact-cta h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 0.94;
}

.team-contact-cta__mail {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(42, 37, 32, 0.28);
  padding: 0.64rem 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.72);
}

.team-contact-cta__mail:hover {
  border-color: var(--ink);
}

.service-page-list {
  display: grid;
  gap: 1rem;
}

.service-row {
  border: 1px solid rgba(203, 191, 173, 0.84);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  min-height: 330px;
}

.service-row.is-reverse {
  grid-template-columns: 1fr 1.08fr;
}

.service-row.is-reverse .service-row__meta {
  order: 2;
}

.service-row.is-reverse .service-row__media {
  order: 1;
}

.service-row__meta {
  padding: clamp(1.1rem, 2.5vw, 1.8rem);
  display: grid;
  align-content: center;
}

.service-row__num {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(159, 132, 99, 0.95);
}

.service-row__meta h2 {
  margin: 0.45rem 0 0.55rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  line-height: 0.94;
}

.service-row__meta p {
  margin: 0;
  color: var(--ink-soft);
}

.service-row__actions {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.service-row__media img,
.service-row__placeholder {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.service-row__placeholder {
  background: linear-gradient(135deg, #ddd2c0 0%, #f3eadb 100%);
}

.gallery-curation-head {
  max-width: 72ch;
}

.gallery-curation-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4.2vw, 4.2rem);
  line-height: 0.92;
}

.gallery-curation-head p {
  margin: 0.74rem 0 0;
  color: var(--ink-soft);
}

.gallery-featured {
  margin-top: 1.2rem;
}

.gallery-featured-card {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #0f0f0e;
  border: 1px solid rgba(193, 178, 156, 0.52);
}

.gallery-featured-card__button {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.gallery-featured-card img {
  min-height: min(68vh, 620px);
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.gallery-featured-card:hover img {
  transform: scale(1.04);
}

.gallery-featured-card__overlay {
  position: absolute;
  inset: 0;
  padding: clamp(1.1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f8f3ea;
  background: linear-gradient(180deg, rgba(10, 10, 9, 0.12) 24%, rgba(8, 8, 7, 0.9) 100%);
  text-align: left;
}

.gallery-featured-card__overlay p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.67rem;
}

.gallery-featured-card__overlay h2 {
  margin: 0.35rem 0 0;
  max-width: 14ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.92;
}

.gallery-featured-card__overlay span {
  margin-top: 0.9rem;
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(246, 240, 232, 0.5);
  padding: 0.5rem 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.gallery-plan-note {
  margin-top: 1rem;
  border: 1px solid rgba(201, 189, 171, 0.84);
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.65);
}

.gallery-plan-note p {
  margin: 0;
  color: var(--ink-soft);
}

.gallery-page-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  transition: opacity 240ms ease, transform 240ms ease;
}

.gallery-page-grid.is-filter-changing {
  opacity: 0.24;
  transform: translateY(8px);
}

.gallery-page-item {
  margin: 0;
  grid-column: span 6;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(206, 194, 176, 0.86);
  background: #fff;
  position: relative;
}

.gallery-page-item.is-span-12 {
  grid-column: span 12;
}

.gallery-page-item.is-span-8 {
  grid-column: span 8;
}

.gallery-page-item.is-span-6 {
  grid-column: span 6;
}

.gallery-page-item.is-span-4 {
  grid-column: span 4;
}

.gallery-page-item__button {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.gallery-page-item img {
  min-height: 300px;
  object-fit: cover;
  transition: transform 760ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.gallery-page-item:hover img {
  transform: scale(1.05);
}

.gallery-page-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 0.9rem;
  display: grid;
  gap: 0.2rem;
  color: #f8f3ea;
  background: linear-gradient(180deg, transparent 18%, rgba(10, 10, 9, 0.9) 100%);
}

.gallery-page-item figcaption strong {
  font-size: 0.86rem;
  font-weight: 600;
}

.gallery-page-item figcaption span {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
  opacity: 0.86;
}

.gallery-page-grid.is-plans .gallery-page-item {
  grid-column: span 6;
  border-radius: 14px;
}

.gallery-page-grid.is-plans .gallery-page-item img {
  min-height: 190px;
  object-fit: contain;
  background: #faf8f2;
}

.gallery-page-item.is-plan figcaption {
  position: static;
  background: #fff;
  color: var(--ink-soft);
  border-top: 1px solid rgba(210, 199, 182, 0.7);
}

.gallery-page-item.is-plan figcaption strong {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-page-item.is-plan figcaption span {
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--ink);
}

.gallery-empty {
  grid-column: span 12;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
}

.gallery-empty h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 0.95;
}

.gallery-empty p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-panel {
  border-radius: 22px;
  padding: clamp(1.2rem, 2.6vw, 1.9rem);
  background: linear-gradient(135deg, #171512 0%, #231f1a 62%, #1b1814 100%);
  color: #f8f3ea;
}

.contact-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 0.95;
}

.contact-panel p {
  margin: 0.85rem 0 0;
  color: rgba(245, 240, 230, 0.9);
}

.contact-data {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(244, 237, 225, 0.3);
  padding-top: 0.95rem;
}

.contact-data p {
  margin: 0 0 0.36rem;
}

.contact-data a {
  color: #dfc4a1;
}

.contact-form {
  border-radius: 20px;
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
  border: 1px solid rgba(206, 194, 176, 0.82);
  background: rgba(255, 255, 255, 0.82);
}

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

.form-field {
  display: grid;
  gap: 0.4rem;
}

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

.form-field label {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.69rem;
  color: var(--muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  border: none;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  padding: 0.48rem 0;
  color: var(--ink);
}

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

.site-footer {
  margin-top: 4rem;
  background: #12110f;
  color: rgba(246, 240, 230, 0.84);
  padding: 1rem 0;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner a {
  color: #decaab;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1280;
  display: none;
  place-items: center;
  background: rgba(8, 8, 8, 0.92);
  padding: 1rem;
}

.lightbox.is-open {
  display: grid;
}

.lightbox figure {
  margin: 0;
  max-width: min(1240px, 96vw);
  max-height: 92vh;
}

.lightbox img {
  max-height: 84vh;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 0.68rem;
  text-align: center;
  color: #f4ede0;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(247, 241, 231, 0.45);
  border-radius: 999px;
  background: transparent;
  color: #f8f3ea;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(247, 241, 231, 0.45);
  background: rgba(9, 9, 8, 0.44);
  color: #f8f3ea;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lightbox__prev {
  left: 1rem;
}

.lightbox__next {
  right: 1rem;
}

.lightbox__counter {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.2rem;
  margin: 0;
  color: rgba(247, 241, 231, 0.86);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.66rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

@media (max-width: 1200px) {
  .header-inner {
    gap: 0.85rem;
  }

  .brand__name {
    font-size: 1.84rem;
  }

  .brand__sub {
    letter-spacing: 0.18em;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-cta {
    display: none;
  }

  .projects-featured-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .projects-featured-item,
  .projects-featured-item.is-priority {
    grid-column: span 6;
  }

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

  .contact-page-layout,
  .studio-intro {
    grid-template-columns: 1fr;
  }

  .team-lead-profile {
    grid-template-columns: 1fr;
  }

  .team-lead-profile__media img {
    min-height: 420px;
  }
}

@media (max-width: 1024px) {
  .page-hero {
    min-height: 64vh;
  }

  .home-hero__content,
  .page-hero__content {
    padding-top: 6.1rem;
  }

  .home-hero h1,
  .page-hero h1 {
    max-width: 13.5ch;
  }

  .page-hero__subtitle {
    max-width: 48ch;
  }

  .project-archive-shell {
    border-radius: 24px;
    padding: clamp(1.1rem, 3.1vw, 2rem);
  }

  .home-selected-section .section-title,
  .home-team-section .section-title {
    max-width: 20ch;
  }

  .home-selected-section .project-featured-grid,
  .home-team-section .team-preview-grid {
    margin-top: 1.4rem;
  }

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

  .project-teaser,
  .project-teaser--primary {
    min-height: 420px;
    grid-row: auto;
  }

  .project-archive-card,
  .project-archive-card.is-span-6 {
    grid-column: span 6;
  }

  .project-archive-card.is-span-12 {
    grid-column: span 12;
    min-height: 460px;
  }

  .gallery-preview-item,
  .gallery-preview-item.is-featured,
  .gallery-preview-item.is-full,
  .gallery-page-item,
  .gallery-page-item.is-span-12,
  .gallery-page-item.is-span-8,
  .gallery-page-item.is-span-6,
  .gallery-page-item.is-span-4,
  .gallery-page-grid.is-plans .gallery-page-item {
    grid-column: span 6;
  }

  .gallery-featured-card img {
    min-height: 460px;
  }

  .gallery-page-grid:not(.is-plans) > .gallery-page-item:last-child:nth-child(odd) {
    grid-column: span 12;
  }

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

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

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

  .service-row,
  .service-row.is-reverse {
    grid-template-columns: 1fr;
  }

  .service-row.is-reverse .service-row__meta,
  .service-row.is-reverse .service-row__media {
    order: initial;
  }

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

  .detail-gallery-item,
  .detail-gallery-item.is-wide {
    grid-column: span 6;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(1320px, calc(100% - 2.8rem));
  }

  .section {
    padding: 4.4rem 0;
  }

  .section--tight {
    padding-top: 3.9rem;
    padding-bottom: 3.9rem;
  }

  .site-header .container,
  .page-main .container,
  main > .container,
  .site-footer .container {
    padding-inline: 0.22rem;
  }

  .studio-intro {
    gap: 1.65rem;
  }

  .studio-intro p {
    max-width: none;
  }

  .studio-intro > div:last-child {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .metric-list {
    margin: 1.45rem auto 0;
    gap: 0.95rem;
    width: min(100%, 340px);
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .metric-list li {
    width: 100%;
    text-align: center;
    padding-top: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.34rem;
  }

  .metric-list strong,
  .metric-list span {
    text-align: center;
  }

  #homeStudioStats,
  #studioStats {
    place-self: center;
  }

  .page-main {
    padding-top: 5.2rem;
  }

  .site-header {
    padding: 0.68rem 0;
  }

  .site-header.is-scrolled,
  .site-header.is-internal {
    padding: 0.56rem 0;
  }

  .header-inner {
    gap: 0.55rem;
  }

  .brand__name {
    font-size: clamp(2rem, 8.6vw, 2.35rem);
    line-height: 0.9;
  }

  .brand__sub {
    font-size: 0.57rem;
    letter-spacing: 0.14em;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .home-hero__content,
  .page-hero__content {
    padding-top: 5.1rem;
  }

  .home-hero h1,
  .page-hero h1 {
    max-width: 11.5ch;
    font-size: clamp(2rem, 10.2vw, 3.4rem);
    line-height: 0.95;
  }

  .page-hero {
    min-height: 56vh;
  }

  .home-hero__subtitle,
  .page-hero__subtitle {
    margin: 1rem 0 1.35rem;
    font-size: clamp(0.95rem, 3.7vw, 1.08rem);
  }

  .home-hero__actions,
  .page-hero__actions {
    width: 100%;
  }

  .home-hero__actions .btn,
  .page-hero__actions .btn {
    width: 100%;
  }

  .home-hero__meta,
  .scroll-indicator {
    display: none;
  }

  .metric-list {
    width: min(100%, 340px);
    margin-inline: auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .services-preview-grid,
  .team-preview-grid,
  .team-roster-grid,
  .studio-team-grid,
  .related-grid,
  .form-grid,
  .detail-plans-grid {
    grid-template-columns: 1fr;
  }

  .home-selected-section .section-title,
  .home-team-section .section-title,
  .home-selected-section .section-intro,
  .home-team-section .section-intro {
    max-width: none;
  }

  .section-title {
    font-size: clamp(1.95rem, 9.1vw, 2.75rem);
    line-height: 0.98;
  }

  .section-intro {
    font-size: 0.98rem;
  }

  .project-teaser,
  .project-teaser--primary {
    min-height: 360px;
  }

  .project-teaser__overlay,
  .project-archive-card__overlay {
    padding: 1.05rem;
  }

  .project-teaser h3 {
    font-size: clamp(1.64rem, 8.2vw, 2.12rem);
  }

  .project-teaser__meta {
    font-size: 0.65rem;
  }

  .project-teaser__desc {
    margin-bottom: 0.75rem;
    font-size: 0.94rem;
  }

  .project-teaser .btn,
  .project-archive-card__cta {
    width: 100%;
  }

  .team-preview-card {
    min-height: 320px;
    aspect-ratio: 16 / 19;
  }

  .team-preview-card__info h3 {
    font-size: 1.2rem;
  }

  .team-preview-card__info p {
    font-size: 0.62rem;
  }

  .home-section-actions .btn {
    width: 100%;
  }

  .project-archive-shell {
    border-radius: 22px;
    padding: 1rem;
  }

  .filter-bar {
    border-radius: 16px;
    padding: 0.34rem;
    gap: 0.28rem;
    scroll-padding-inline: 0.34rem;
    overflow: visible;
    flex-wrap: wrap;
  }

  .filter-pill {
    font-size: 0.62rem;
    padding: 0.34rem 0.58rem;
    letter-spacing: 0.08em;
    flex: 1 1 calc(50% - 0.28rem);
    justify-content: space-between;
    min-width: 0;
  }

  .filter-pill__count {
    font-size: 0.54rem;
  }

  .project-archive-card,
  .project-archive-card.is-span-12,
  .project-archive-card.is-span-6,
  .gallery-preview-item,
  .gallery-preview-item.is-featured,
  .gallery-preview-item.is-full,
  .gallery-page-item,
  .gallery-page-item.is-span-12,
  .gallery-page-item.is-span-8,
  .gallery-page-item.is-span-6,
  .gallery-page-item.is-span-4,
  .gallery-page-grid.is-plans .gallery-page-item,
  .detail-gallery-item,
  .detail-gallery-item.is-wide {
    grid-column: span 12;
  }

  .project-archive-card,
  .project-archive-card.is-span-12,
  .project-archive-card.is-span-6 {
    min-height: 300px;
    aspect-ratio: 4 / 3;
  }

  .project-archive-card__desc {
    -webkit-line-clamp: 2;
    font-size: 0.92rem;
    margin: 0.56rem 0 0.72rem;
  }

  .project-archive-card__cta {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.09em;
    font-size: 0.62rem;
    padding-inline: 0.72rem;
  }

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

  .projects-featured-item,
  .projects-featured-item.is-priority {
    grid-column: span 1;
  }

  .next-project-link,
  .related-card a,
  .projects-featured-item a {
    grid-template-columns: 1fr;
  }

  .projects-featured-item a,
  .related-card a {
    min-height: auto;
  }

  .projects-featured-item a img,
  .related-card img,
  .next-project-link img {
    min-height: 220px;
  }

  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .team-contact-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-lead-profile__media img {
    min-height: 360px;
    object-position: 66% 16%;
  }

  .team-lead-profile__content {
    padding: 1rem;
  }

  .team-lead-profile__content h2 {
    font-size: clamp(2rem, 10.2vw, 2.8rem);
  }

  .gallery-featured-card img {
    min-height: 360px;
  }

  .gallery-featured-card__overlay h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 11vw, 2.9rem);
  }

  .gallery-page-item img {
    min-height: 240px;
  }

  .lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .cta-panel .btn {
    width: 100%;
  }

  .contact-page-layout {
    gap: 0.95rem;
  }

  .contact-form,
  .contact-panel,
  .surface-panel {
    border-radius: 16px;
    padding: 1rem;
  }

  .team-contact-cta,
  .cta-panel {
    padding: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.46rem;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(1320px, calc(100% - 2.4rem));
  }

  .section {
    padding: 3.7rem 0;
  }

  .page-main {
    padding-top: 4.9rem;
  }

  .brand__name {
    font-size: 1.92rem;
  }

  .brand__sub {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

  .mobile-menu {
    width: 100%;
    padding: 0.9rem 1rem 1.25rem;
  }

  .site-header .container,
  .page-main .container,
  main > .container,
  .site-footer .container {
    padding-inline: 0.18rem;
  }

  .studio-intro {
    gap: 1.45rem;
  }

  .studio-intro > div:last-child {
    max-width: 330px;
  }

  .metric-list {
    width: min(100%, 330px);
    margin-inline: auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .page-hero {
    min-height: 50vh;
  }

  .home-hero__content,
  .page-hero__content {
    padding-top: 4.9rem;
  }

  .home-hero h1,
  .page-hero h1 {
    max-width: 10.8ch;
    font-size: clamp(1.8rem, 9.4vw, 2.55rem);
  }

  .home-hero__subtitle,
  .page-hero__subtitle {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: clamp(1.74rem, 8.8vw, 2.32rem);
    line-height: 1.01;
  }

  .project-featured-grid {
    gap: 0.82rem;
  }

  .project-teaser,
  .project-teaser--primary {
    min-height: 330px;
  }

  .project-archive-shell {
    margin-top: 2rem;
    border-radius: 18px;
    padding: 0.95rem;
  }

  .filter-pill {
    padding: 0.34rem 0.58rem;
    font-size: 0.59rem;
    letter-spacing: 0.08em;
    flex-basis: calc(50% - 0.28rem);
  }

  .filter-pill__count {
    font-size: 0.52rem;
  }

  .project-archive-card {
    min-height: 280px;
    border-radius: 16px;
  }

  .project-archive-card.is-span-12,
  .project-archive-card.is-span-6 {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .project-archive-card h3 {
    font-size: clamp(1.5rem, 8vw, 1.95rem);
  }

  .project-archive-card__desc {
    -webkit-line-clamp: 2;
    font-size: 0.92rem;
  }

  .service-row {
    border-radius: 16px;
    min-height: 0;
  }

  .service-row__meta {
    padding: 1rem;
  }

  .service-row__media img,
  .service-row__placeholder {
    min-height: 250px;
  }

  .team-preview-card {
    min-height: 300px;
    border-radius: 14px;
  }

  .team-lead-profile__media img {
    min-height: 320px;
    object-position: 67% 16%;
  }

  .team-lead-profile__content h2 {
    font-size: clamp(1.9rem, 9.2vw, 2.45rem);
  }

  .team-roster-card__media img {
    height: 240px;
  }

  .detail-gallery-item img {
    min-height: 220px;
  }

  .gallery-page-item img {
    min-height: 220px;
  }

  .gallery-page-grid.is-plans .gallery-page-item img {
    min-height: 170px;
  }

  .contact-inline {
    gap: 0.55rem 0.8rem;
    font-size: 0.8rem;
  }

  .contact-panel h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.35rem);
  }

  .form-grid {
    gap: 0.72rem;
  }

  .btn {
    padding: 0.74rem 1.06rem;
    font-size: 0.66rem;
    letter-spacing: 0.11em;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(1320px, calc(100% - 2.2rem));
  }

  .section {
    padding: 3.2rem 0;
  }

  .brand__name {
    font-size: 1.78rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .page-main {
    padding-top: 4.75rem;
  }

  .site-header .container,
  .page-main .container,
  main > .container,
  .site-footer .container {
    padding-inline: 0.16rem;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(1.68rem, 9.2vw, 2.3rem);
  }

  .project-teaser,
  .project-teaser--primary {
    min-height: 308px;
  }

  .project-teaser h3 {
    font-size: clamp(1.45rem, 7.9vw, 1.85rem);
  }

  .project-archive-card {
    min-height: 260px;
  }

  .project-archive-card h3 {
    font-size: clamp(1.42rem, 7.8vw, 1.8rem);
  }

  .project-archive-card.is-span-12,
  .project-archive-card.is-span-6 {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .filter-pill {
    flex-basis: 100%;
  }

  .metric-list {
    width: min(100%, 320px);
    margin-inline: auto;
    justify-items: center;
  }

  .team-preview-card {
    min-height: 286px;
  }

  .team-lead-profile__media img {
    min-height: 292px;
    object-position: 68% 16%;
  }

  .gallery-featured-card img {
    min-height: 300px;
  }

  .project-archive-shell,
  .surface-panel,
  .contact-panel,
  .contact-form,
  .team-contact-cta,
  .cta-panel {
    padding: 0.9rem;
  }
}
