:root {
  --paper: #f6f2ec;
  --paper-deep: #ece4db;
  --ink: #20211f;
  --muted: #77736d;
  --rose: #a86f69;
  --rose-light: #d8b5af;
  --line: rgba(32, 33, 31, 0.18);
  --white: #fffdf9;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --page: clamp(20px, 4.2vw, 72px);
  --header-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

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

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

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
}

a {
  text-decoration: none;
}

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

p,
h1,
h2,
h3,
blockquote,
dl,
dd {
  margin: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 0 var(--page);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 236, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  width: max-content;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.13em;
}

.brand span:last-child {
  margin-top: 5px;
  color: var(--rose);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.42em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 52px);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-contact {
  position: relative;
}

.desktop-nav a::after,
.header-contact::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.header-contact:hover::after,
.header-contact:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  justify-self: end;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 200ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 70;
  padding: 38px var(--page);
  background: var(--paper);
}

.mobile-menu:not([hidden]) {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 48px);
}

.hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(68px, 9vw, 135px) var(--page) 38px;
}

.eyebrow,
.section-index,
.project-type,
.section-note,
.image-caption,
.studio-image > p,
.gallery-header p {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.manifesto h2,
.services h2,
.studio h2,
.faq h2,
.contact h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 690px;
  margin: 29px 0 35px;
  font-size: clamp(58px, 7vw, 112px);
}

em {
  color: var(--rose);
  font-weight: 400;
}

.hero-intro {
  max-width: 530px;
  color: #55534f;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease;
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: transparent;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
}

.text-link span,
.inline-action span,
.price-card a span,
.contact-links span {
  transition: transform 200ms ease;
}

.text-link:hover span,
.inline-action:hover span,
.price-card a:hover span,
.contact-links a:hover span {
  transform: translate(3px, -3px);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: auto;
  padding-top: 60px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  background: #d6cdc3;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.hero-visual > .hero-portrait {
  object-position: 57% center;
}

.hero-visual:hover > img {
  transform: scale(1.018);
}

.hero-badge {
  position: absolute;
  top: 36px;
  right: 36px;
  width: 126px;
  height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(246, 242, 236, 0.93);
  text-align: center;
}

.hero-badge span {
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-badge strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.image-caption {
  position: absolute;
  right: 22px;
  bottom: 19px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 15px;
  background: rgba(246, 242, 236, 0.88);
  backdrop-filter: blur(8px);
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 18px 0;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  letter-spacing: 0.03em;
}

.ticker-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose-light);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-pad {
  padding: clamp(90px, 12vw, 185px) var(--page);
}

.section-index {
  padding-top: 9px;
  color: var(--muted);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(120px, 0.27fr) minmax(0, 1fr);
  gap: 45px;
}

.manifesto h2,
.section-heading h2,
.services h2,
.studio h2,
.faq h2 {
  font-size: clamp(50px, 6.7vw, 108px);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 150px);
  margin-top: clamp(60px, 8vw, 110px);
}

.manifesto .lead {
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 34px);
  line-height: 1.35;
}

.principles article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

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

.principles strong {
  color: var(--rose);
  font-size: 11px;
  font-weight: 500;
}

.principles span {
  max-width: 480px;
}

.projects {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.27fr) minmax(0, 1fr) minmax(160px, 0.32fr);
  gap: 45px;
  align-items: end;
  margin-bottom: clamp(80px, 10vw, 150px);
}

.section-note {
  max-width: 190px;
  justify-self: end;
  padding-bottom: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.project {
  position: relative;
}

.project-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.44fr) minmax(300px, 0.56fr);
  grid-template-areas:
    "identity ."
    "image copy";
  column-gap: clamp(35px, 6vw, 100px);
  row-gap: 30px;
  align-items: end;
}

.project-wide > .project-identity {
  grid-area: identity;
}

.project-wide > .project-image {
  grid-area: image;
}

.project-wide > .project-copy {
  grid-area: copy;
}

.project-image {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #ddd4ca;
  cursor: zoom-in;
}

.project-wide .project-image {
  aspect-ratio: 1.33 / 1;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(.2,.7,.2,1);
}

.project-image:hover img,
.project-image:focus-visible img {
  transform: scale(1.025);
}

.open-mark {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper);
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.project-image:hover .open-mark,
.project-image:focus-visible .open-mark {
  color: var(--paper);
  background: var(--ink);
  transform: rotate(-6deg);
}

.project-copy {
  padding-bottom: 12px;
}

.project-identity {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 20px;
  align-items: start;
  margin-bottom: 0;
}

.project-number {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
  padding-top: 1px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
  line-height: 1;
}

.project-type {
  grid-column: 2;
  margin: 0 0 15px;
  color: var(--muted);
}

.project-identity h3 {
  grid-column: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(35px, 4vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.project-copy > p:not(.project-type) {
  max-width: 500px;
  color: #5d5a55;
  line-height: 1.7;
}

.project-copy dl {
  margin: 32px 0 27px;
  border-top: 1px solid var(--line);
}

.project-copy dl > div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.project-copy dt {
  color: var(--muted);
}

.inline-action {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.project-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(35px, 7vw, 120px);
  margin-top: clamp(120px, 16vw, 250px);
}

.section-heading + .project-pair {
  margin-top: 0;
}

.project-pair-new {
  margin-top: clamp(180px, 22vw, 340px);
}

.project-headliner {
  margin-top: clamp(170px, 20vw, 320px);
}

.project-plan-button {
  width: 100%;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0 0 24px;
  border: 1px solid var(--line);
  padding: 10px 14px 10px 10px;
  color: var(--ink);
  background: var(--paper);
  text-align: left;
  cursor: zoom-in;
  transition: border-color 180ms ease, background 180ms ease;
}

.project-plan-button:hover,
.project-plan-button:focus-visible {
  border-color: var(--ink);
  background: var(--white);
}

.project-plan-button img {
  width: 78px;
  height: 92px;
  object-fit: contain;
  background: #f3f0ea;
}

.project-realization-button img {
  object-fit: cover;
}

.project-plan-button span {
  display: grid;
  gap: 5px;
}

.project-plan-button strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.project-plan-button small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-plan-button i {
  font-style: normal;
}

.project-tall .project-image {
  aspect-ratio: 0.78 / 1;
}

.project-tall > .project-identity {
  margin-bottom: 30px;
}

.project-tall .project-copy {
  max-width: 590px;
  padding-top: 38px;
}

.project-offset {
  transform: translateY(12vw);
}

.services {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(70px, 10vw, 180px);
  margin-top: 10vw;
  background: var(--paper-deep);
}

.services-intro {
  align-self: start;
}

.services h2 {
  margin: 38px 0 45px;
}

.services-intro > p:last-child {
  max-width: 470px;
  color: #5d5a55;
  line-height: 1.75;
}

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

.service-list details,
.faq-list details {
  border-bottom: 1px solid var(--line);
}

.service-list summary,
.faq-list summary {
  list-style: none;
  cursor: pointer;
}

.service-list summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.service-list summary {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  gap: 18px;
  align-items: center;
  min-height: 94px;
}

.service-list summary span {
  color: var(--rose);
  font-size: 11px;
}

.service-list summary strong {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 400;
}

.service-list summary i,
.faq-list summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.service-list summary i::before,
.service-list summary i::after,
.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.service-list summary i::after,
.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-list details[open] summary i::after,
.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-list details > div,
.faq-list details > div {
  display: grid;
  grid-template-rows: 0fr;
}

.service-list details[open] > div,
.faq-list details[open] > div {
  grid-template-rows: 1fr;
}

.service-list details > div > p,
.faq-list details > div > p {
  overflow: hidden;
}

.service-list details > div p {
  max-width: 570px;
  padding: 0 45px 29px 60px;
  color: #5d5a55;
  line-height: 1.7;
}

.pricing {
  background: var(--ink);
  color: var(--paper);
}

.pricing .section-index,
.pricing .section-note {
  color: #aaa69f;
}

.pricing-heading {
  margin-bottom: 75px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(246, 242, 236, 0.3);
  border-bottom: 1px solid rgba(246, 242, 236, 0.3);
}

.price-card {
  position: relative;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  padding: 32px clamp(22px, 2.2vw, 40px) 34px;
  border-right: 1px solid rgba(246, 242, 236, 0.2);
}

.price-card:last-child {
  border-right: 0;
}

.price-card-featured {
  color: var(--ink);
  background: var(--rose-light);
}

.price-top {
  min-height: 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #aaa69f;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-top p {
  max-width: 120px;
  text-align: right;
}

.price-card-featured .price-top {
  color: #6e5a56;
}

.price-label {
  position: absolute;
  top: -27px;
  right: 0;
  left: 0;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: white;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 34px 0 10px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.2vw, 38px);
  font-weight: 400;
}

.package-tag {
  width: fit-content;
  margin: 0 0 18px;
  padding: 5px 9px;
  border: 1px solid rgba(246, 242, 236, 0.25);
  border-radius: 999px;
  color: #aaa69f;
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: lowercase;
}

.price-card-featured .package-tag {
  border-color: rgba(32, 33, 31, 0.25);
  color: #6e5a56;
}

.price {
  padding-bottom: 29px;
  border-bottom: 1px solid rgba(246, 242, 236, 0.25);
  color: #aaa69f;
  font-size: 12px;
}

.price-card-featured .price {
  border-color: rgba(32, 33, 31, 0.25);
  color: #6e5a56;
}

.price strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 33px);
  font-weight: 400;
}

.price-card-featured .price strong {
  color: var(--ink);
}

.price-card ul {
  margin: 28px 0 35px;
  padding: 0;
  list-style: none;
  color: #c4c0b8;
  font-size: 13px;
}

.price-card-featured ul {
  color: #4e4441;
}

.price-card li {
  position: relative;
  margin: 10px 0;
  padding-left: 17px;
}

.price-card li::before {
  content: "—";
  position: absolute;
  left: 0;
}

.price-card > a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(246, 242, 236, 0.3);
  font-size: 12px;
}

.price-card-featured > a {
  border-color: rgba(32, 33, 31, 0.3);
}

.process {
  background: var(--white);
}

.process-heading {
  grid-template-columns: minmax(120px, 0.27fr) minmax(0, 1fr);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 23px clamp(17px, 2.2vw, 36px) 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list li:nth-child(4n) {
  border-right: 0;
}

.process-list span {
  color: var(--rose);
  font-size: 11px;
}

.process-list h3 {
  margin: 74px 0 15px;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 400;
}

.process-list p {
  max-width: 240px;
  color: var(--muted);
  font-size: 13px;
}

.studio {
  display: grid;
  grid-template-columns: minmax(400px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(65px, 10vw, 170px);
  align-items: center;
  background: var(--paper);
}

.studio-text-only {
  grid-template-columns: minmax(0, 1fr);
}

.studio-text-only .studio-copy {
  width: min(760px, 100%);
  margin-left: clamp(0px, 22vw, 360px);
}

.studio-image {
  position: relative;
}

.studio-image img {
  width: 100%;
  aspect-ratio: 0.84 / 1;
  object-fit: cover;
}

.studio-image > p {
  position: absolute;
  right: 18px;
  bottom: 15px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  background: rgba(246, 242, 236, 0.88);
}

.studio h2 {
  margin: 38px 0 30px;
}

.studio-role {
  max-width: 430px;
  color: var(--rose);
  font-size: 12px;
  letter-spacing: 0.09em;
  line-height: 1.6;
  text-transform: uppercase;
}

.studio-text {
  max-width: 580px;
  margin-top: 42px;
  color: #55534f;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.6;
}

.studio blockquote {
  max-width: 610px;
  margin: 46px 0 30px;
  padding: 25px 0 25px 35px;
  border-left: 1px solid var(--rose);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 31px);
  font-style: italic;
  line-height: 1.4;
}

.faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(500px, 1.3fr);
  gap: clamp(70px, 11vw, 190px);
  background: var(--white);
}

.faq h2 {
  margin-top: 38px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 25px;
  gap: 30px;
  align-items: center;
  min-height: 102px;
}

.faq-list summary strong {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 400;
}

.faq-list details > div p {
  max-width: 650px;
  padding: 0 50px 30px 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(90px, 11vw, 170px) var(--page) 48px;
  background: var(--rose);
  color: var(--white);
}

.contact h2 {
  margin-top: 28px;
  color: var(--white);
  font-size: clamp(62px, 9.8vw, 155px);
}

.contact h2 em {
  color: #ead2cd;
}

.contact-bottom {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
  align-items: start;
  margin-top: 100px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 253, 249, 0.45);
}

.contact-intro > p:first-child {
  max-width: 390px;
  color: #f2dfdb;
  line-height: 1.7;
}

.selected-package {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 14px;
  max-width: 390px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 253, 249, 0.35);
}

.selected-package[hidden] {
  display: none;
}

.selected-package span {
  grid-column: 1 / -1;
  color: #ead2cd;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-package strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.selected-package em {
  align-self: center;
  justify-self: end;
  color: #f2dfdb;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.05em;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
}

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

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

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

.form-field label,
.lead-form > .form-field > label {
  color: #f2dfdb;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 249, 0.55);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
}

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

.form-field select {
  cursor: pointer;
}

.form-field select option {
  background: var(--paper);
  color: var(--ink);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 253, 249, 0.55);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--white);
  box-shadow: 0 1px 0 var(--white);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-bottom-color: #ffe2a8;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #f2dfdb;
  font-size: 11px;
  line-height: 1.5;
  cursor: pointer;
}

.form-consent input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: var(--white);
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 54px;
}

.lead-submit {
  min-width: 210px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 253, 249, 0.75);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.lead-submit:hover {
  background: transparent;
  color: var(--white);
}

.lead-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  max-width: 360px;
  color: #f7e9e6;
  font-size: 12px;
  line-height: 1.55;
}

.form-status.is-error {
  color: #ffe2a8;
}

.contact-links {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 480px);
  justify-content: end;
  gap: 30px;
}

.contact-links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 253, 249, 0.65);
  font-size: 13px;
}

.site-footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 30px var(--page);
  background: var(--ink);
  color: var(--paper);
}

.brand-footer span:last-child {
  color: var(--rose-light);
}

.site-footer p {
  color: #9e9a93;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer p:last-child {
  justify-self: end;
}

.gallery {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--paper);
  background: #161716;
}

.gallery::backdrop {
  background: #161716;
}

.gallery-shell {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.gallery-header {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 15px clamp(20px, 3vw, 50px);
  border-bottom: 1px solid rgba(246, 242, 236, 0.18);
}

.gallery-header p {
  color: #9e9a93;
}

.gallery-header h2 {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.gallery-counter {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  font-variant-numeric: tabular-nums;
}

.gallery-close {
  position: relative;
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(246, 242, 236, 0.3);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.gallery-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: var(--paper);
}

.gallery-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gallery-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.gallery-stage {
  min-height: 0;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 74px;
  align-items: center;
  padding: 20px clamp(4px, 1.5vw, 25px);
}

.gallery-stage figure {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.gallery-stage figcaption {
  padding-top: 9px;
  color: #9e9a93;
  font-size: 10px;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.gallery-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(246, 242, 236, 0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible,
.gallery-close:hover,
.gallery-close:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.gallery-close:hover span,
.gallery-close:focus-visible span {
  background: var(--ink);
}

.gallery-thumbs {
  height: 104px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 11px clamp(20px, 3vw, 50px) 13px;
  border-top: 1px solid rgba(246, 242, 236, 0.18);
  scrollbar-width: thin;
}

.gallery-thumbs button {
  flex: 0 0 75px;
  border: 1px solid transparent;
  padding: 3px;
  background: transparent;
  opacity: 0.5;
  cursor: pointer;
}

.gallery-thumbs button[aria-current="true"] {
  border-color: var(--paper);
  opacity: 1;
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.85fr);
  }

  .section-heading,
  .manifesto {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .section-heading .section-note {
    grid-column: 2;
    justify-self: start;
    margin-top: 20px;
  }

  .services {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 65px;
  }

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

  .price-card:nth-child(2) {
    border-right: 0;
  }

  .price-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(246, 242, 236, 0.2);
  }

  .price-label {
    top: 0;
    right: 0;
    left: auto;
    width: 150px;
  }

  .faq {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
  }
}

@media (max-width: 900px) {
  :root { --header-h: 70px; }

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

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-button {
    display: block;
  }

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

  .hero-copy {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 55px;
  }

  .hero-meta {
    margin-top: 55px;
    padding-top: 0;
  }

  .hero-visual {
    min-height: 75svh;
  }

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

  .project-wide {
    grid-template-columns: 1fr;
    grid-template-areas:
      "identity"
      "image"
      "copy";
  }

  .project-wide .project-copy {
    max-width: 640px;
  }

  .project-pair {
    gap: 40px;
  }

  .section-heading + .project-pair .project-identity {
    grid-template-rows: auto minmax(70px, auto);
  }

  .services,
  .faq {
    grid-template-columns: 1fr;
  }

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

  .process-list li:nth-child(2n) {
    border-right: 0;
  }

  .process-list li:nth-child(4n+1),
  .process-list li:nth-child(4n+3) {
    border-right: 1px solid var(--line);
  }

  .studio {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
  }

  .studio-text-only {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-links {
    grid-column: 1;
    grid-template-columns: minmax(260px, 480px);
  }

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

  .site-footer p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero h1 {
    font-size: clamp(50px, 15vw, 76px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 68svh;
  }

  .hero-badge {
    top: 20px;
    right: 20px;
    width: 105px;
    height: 105px;
  }

  .image-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 9px;
  }

  .section-pad {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .manifesto,
  .section-heading,
  .process-heading {
    grid-template-columns: 1fr;
  }

  .manifesto .section-index,
  .section-heading .section-index {
    margin-bottom: 22px;
  }

  .section-heading .section-note {
    grid-column: 1;
  }

  .manifesto h2,
  .section-heading h2,
  .services h2,
  .studio h2,
  .faq h2 {
    font-size: clamp(46px, 14vw, 72px);
  }

  .manifesto-grid {
    gap: 50px;
    margin-top: 55px;
  }

  .project-wide .project-image {
    aspect-ratio: 0.82 / 1;
  }

  .project-pair {
    grid-template-columns: 1fr;
    margin-top: 110px;
  }

  .project-pair-new {
    margin-top: 150px;
  }

  .project-headliner {
    margin-top: 130px;
  }

  .project-offset {
    margin-top: 80px;
    transform: none;
  }

  .project-identity {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 14px;
  }

  .open-mark {
    right: 16px;
    bottom: 16px;
    width: 92px;
    height: 92px;
    font-size: 9px;
  }

  .services {
    margin-top: 0;
  }

  .service-list summary {
    grid-template-columns: 32px 1fr 22px;
    gap: 12px;
    min-height: 84px;
  }

  .service-list details > div p {
    padding-left: 44px;
  }

  .price-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .price-card {
    min-height: 480px;
    border-right: 0;
    border-bottom: 1px solid rgba(246, 242, 236, 0.2);
  }

  .price-card-featured {
    margin-top: 26px;
  }

  .price-label {
    top: -26px;
    right: 0;
    left: 0;
    width: auto;
  }

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

  .process-list li,
  .process-list li:nth-child(odd) {
    min-height: 210px;
    border-right: 0;
  }

  .process-list h3 {
    margin-top: 45px;
  }

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

  .studio-text-only .studio-copy {
    margin-left: 0;
  }

  .studio-image img {
    aspect-ratio: 0.88 / 1;
  }

  .faq {
    gap: 60px;
  }

  .contact {
    min-height: 750px;
  }

  .contact h2 {
    font-size: clamp(57px, 17vw, 88px);
  }

  .contact-links {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 10px;
  }

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

  .form-field-wide {
    grid-column: 1;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-header {
    grid-template-columns: 1fr auto auto;
    gap: 15px;
  }

  .gallery-stage {
    position: relative;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .gallery-arrow {
    position: absolute;
    bottom: 32px;
    z-index: 2;
    background: rgba(22, 23, 22, 0.65);
  }

  .gallery-prev { left: 24px; }
  .gallery-next { right: 24px; }

  .gallery-thumbs {
    height: 88px;
  }

  .gallery-thumbs button {
    flex-basis: 61px;
  }
}

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

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

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