:root {
  --ink: #17201c;
  --green: #17382d;
  --green-deep: #0e2921;
  --green-soft: #26483c;
  --ivory: #f3eee4;
  --ivory-light: #fbf8f1;
  --stone: #ded6c9;
  --stone-dark: #8b867d;
  --oxblood: #743c38;
  --gold: #b69863;
  --line: rgba(23, 32, 28, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 74px;
  --beta-height: 29px;
  --city-nav-height: 36px;
  --shadow: 0 24px 70px rgba(14, 41, 33, 0.16);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--city-nav-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

img,
svg {
  display: block;
}

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

:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: white;
  background: var(--oxblood);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.beta-bar {
  position: relative;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--beta-height);
  gap: 8px;
  color: var(--ivory);
  background: var(--oxblood);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 clamp(22px, 3.4vw, 58px);
  border-bottom: 1px solid rgba(23, 32, 28, 0.13);
  background: rgba(243, 238, 228, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.scrolled {
  background: rgba(251, 248, 241, 0.96);
  box-shadow: 0 5px 24px rgba(14, 41, 33, 0.07);
}

.site-header:has(.city-switcher) {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: clamp(18px, 2.2vw, 38px);
}

.site-header:has(.city-switcher) .desktop-nav {
  justify-self: center;
  gap: clamp(16px, 1.7vw, 30px);
}

.city-switcher {
  min-width: 112px;
  padding: 8px 30px 8px 11px;
  border: 1px solid rgba(23, 32, 28, 0.24);
  border-radius: 0;
  color: var(--green);
  background-color: transparent;
  font: 700 9px/1 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.city-switcher:hover,
.city-switcher:focus-visible {
  border-color: var(--oxblood);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
}

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

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.brand-city {
  margin-top: 5px;
  color: var(--oxblood);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.48em;
}

.desktop-nav {
  display: flex;
  gap: clamp(22px, 2.5vw, 42px);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.desktop-nav a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--oxblood);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.header-cta {
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.header-cta span {
  display: inline-block;
  margin-left: 7px;
  color: var(--oxblood);
  transition: transform 180ms ease;
}

.header-cta:hover span {
  transform: translate(2px, -2px);
}

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

.global-city-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 72;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--city-nav-height);
  gap: clamp(14px, 2vw, 30px);
  padding: 7px 20px;
  border-bottom: 1px solid rgba(23, 32, 28, 0.14);
  background: rgba(251, 248, 241, 0.96);
  box-shadow: 0 7px 18px rgba(14, 41, 33, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.global-city-nav > span {
  color: var(--stone-dark);
}

.global-city-nav a {
  position: relative;
  color: var(--green);
}

.global-city-nav a[aria-current="page"] {
  color: var(--oxblood);
}

.global-city-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.guide-page .global-city-nav,
.service-page .global-city-nav {
  top: calc(var(--header-height) + var(--beta-height));
}

.experience-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(350px, 30vw, 440px);
  align-items: start;
  max-width: 1600px;
  margin: 0 auto;
}

main {
  min-width: 0;
  border-right: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - var(--beta-height));
  overflow: hidden;
  color: var(--ivory-light);
  background: var(--green-deep);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/notice-milan-courtyard.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  animation: hero-settle 1.4s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 18, 15, 0.88) 0%, rgba(10, 18, 15, 0.68) 34%, rgba(10, 18, 15, 0.12) 70%),
    linear-gradient(0deg, rgba(10, 18, 15, 0.65) 0%, transparent 50%);
}

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1.015); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  max-width: 820px;
  padding: clamp(64px, 9vw, 130px) clamp(30px, 6vw, 92px) clamp(62px, 8vh, 96px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--oxblood);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: var(--gold);
}

.hero h1,
.section-pad h2,
.perspectives h2,
.milan-note h2,
.closing h2,
.contact-card h2,
.contact-dialog h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(59px, 7.3vw, 112px);
}

.hero-intro {
  max-width: 630px;
  margin: 32px 0 0;
  color: rgba(251, 248, 241, 0.83);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.42;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 23px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-ivory:hover {
  color: var(--ivory-light);
  border-color: rgba(251, 248, 241, 0.6);
  background: transparent;
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 8px;
}

.light-link {
  color: var(--ivory-light);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 42px 0 0;
  padding: 0;
  color: rgba(251, 248, 241, 0.7);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  list-style: none;
  text-transform: uppercase;
}

.hero-proof li:not(:first-child)::before {
  margin-right: 24px;
  color: var(--gold);
  content: "◆";
  font-size: 5px;
  vertical-align: middle;
}

.image-caption {
  position: absolute;
  right: 20px;
  bottom: 22px;
  z-index: 2;
  margin: 0;
  color: rgba(251, 248, 241, 0.5);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section-pad {
  padding: clamp(84px, 10vw, 150px) clamp(30px, 6vw, 92px);
}

.premise {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: clamp(20px, 4vw, 58px);
  background: var(--ivory-light);
}

.section-number {
  padding-top: 4px;
  color: var(--stone-dark);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.section-pad h2,
.perspectives h2,
.milan-note h2,
.closing h2 {
  font-size: clamp(46px, 5.8vw, 82px);
}

.lead-copy {
  max-width: 720px;
  margin: 42px 0 0;
  color: #44504a;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.5;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.principle {
  min-height: 390px;
  padding: 45px clamp(24px, 3vw, 48px);
}

.principle + .principle {
  border-left: 1px solid var(--line);
}

.principle > span,
.service-index {
  color: var(--oxblood);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.principle h3 {
  margin: 100px 0 23px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.principle p {
  max-width: 300px;
  margin: 0;
  color: #5a635e;
  font-size: 13px;
  line-height: 1.7;
}

.city-collection {
  background: var(--ivory-light);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.city-card {
  position: relative;
  min-height: clamp(330px, 37vw, 520px);
  overflow: hidden;
  background: var(--green-deep);
}

.city-card a,
.city-card img,
.city-card-overlay {
  position: absolute;
  inset: 0;
}

.city-card a {
  color: var(--ivory-light);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 500ms ease;
}

.city-card-overlay {
  background: linear-gradient(0deg, rgba(6, 21, 16, 0.9) 0%, rgba(6, 21, 16, 0.12) 70%);
  transition: background-color 300ms ease;
}

.city-card-copy {
  position: absolute;
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(25px, 4vw, 48px);
  left: clamp(24px, 4vw, 52px);
  display: grid;
}

.city-card-copy > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.city-card-copy strong {
  margin: 6px 0 8px;
  font-family: var(--serif);
  font-size: clamp(39px, 5vw, 66px);
  font-weight: 400;
  line-height: 1;
}

.city-card-copy small {
  max-width: 450px;
  color: rgba(251, 248, 241, 0.77);
  font-size: 12px;
  line-height: 1.55;
}

.city-card a:hover img,
.city-card a:focus-visible img {
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.035);
}

.city-switcher-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.city-switcher-inline label {
  font-family: var(--serif);
  font-size: 18px;
}

.city-switcher-inline select {
  min-width: min(100%, 280px);
  padding: 12px 38px 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--ivory-light);
}

.services {
  background: var(--ivory-light);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(250px, 0.75fr);
  align-items: end;
  gap: clamp(40px, 7vw, 105px);
  margin-bottom: clamp(68px, 9vw, 120px);
}

.section-heading > p {
  margin: 0 0 6px;
  color: #5a635e;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}

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

.service-row {
  display: grid;
  grid-template-columns: 45px 72px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 45px);
  align-items: start;
  padding: 37px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 240ms ease, background-color 240ms ease;
}

.service-row:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(222, 214, 201, 0.2);
}

.service-icon {
  display: grid;
  width: 63px;
  height: 63px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: square;
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
}

.service-copy h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.service-copy p {
  max-width: 660px;
  margin: 0;
  color: #5a635e;
  font-size: 14px;
  line-height: 1.75;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(116, 60, 56, 0.4);
  color: var(--oxblood);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-detail-link span {
  transition: transform 180ms ease;
}

.service-detail-link:hover span {
  transform: translateX(4px);
}

.perspectives {
  padding: clamp(84px, 10vw, 140px) clamp(30px, 6vw, 92px);
  color: var(--ivory-light);
  background: var(--green-deep);
}

.perspectives-header {
  max-width: 830px;
}

.testimonial-disclosure {
  max-width: 700px;
  margin: 32px 0 0;
  color: rgba(251, 248, 241, 0.64);
  font-size: 12px;
  line-height: 1.7;
}

.testimonial-disclosure strong {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.profile-stack {
  display: grid;
  gap: 16px;
  margin-top: 70px;
}

.profile-card {
  padding: clamp(30px, 4.5vw, 60px);
  border: 1px solid rgba(243, 238, 228, 0.18);
  background: rgba(243, 238, 228, 0.045);
  transition: background-color 220ms ease, border-color 220ms ease;
}

.profile-card:hover {
  border-color: rgba(182, 152, 99, 0.55);
  background: rgba(243, 238, 228, 0.07);
}

.profile-meta {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile-brief {
  max-width: 840px;
  margin: 42px 0 32px;
  font-family: var(--serif);
  font-size: clamp(27px, 3.3vw, 45px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.profile-card > p {
  margin: 0;
  color: rgba(251, 248, 241, 0.5);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.approach {
  background: var(--ivory);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 25px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  padding-top: 9px;
  color: var(--oxblood);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.process-list h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
}

.process-list p {
  max-width: 700px;
  margin: 0;
  color: #5a635e;
  font-size: 14px;
  line-height: 1.75;
}

.milan-note {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: clamp(90px, 12vw, 175px) clamp(30px, 6vw, 92px);
  color: var(--ivory-light);
  background: var(--oxblood);
}

.milan-note > div:not(.milan-pattern) {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.milan-note .eyebrow {
  color: #d3ba8e;
}

.milan-note p:last-child {
  max-width: 680px;
  margin: 38px 0 0;
  color: rgba(251, 248, 241, 0.78);
  font-family: var(--serif);
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.55;
}

.milan-pattern {
  position: absolute;
  top: 50%;
  right: -180px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(243, 238, 228, 0.15);
  border-radius: 50%;
  transform: translateY(-50%);
}

.milan-pattern::before,
.milan-pattern::after {
  position: absolute;
  border: 1px solid rgba(243, 238, 228, 0.15);
  content: "";
}

.milan-pattern::before {
  inset: 105px;
  border-radius: 50%;
}

.milan-pattern::after {
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq {
  background: var(--ivory-light);
}

.faq-heading {
  margin-bottom: 60px;
}

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

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 27px);
  list-style: none;
}

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

.accordion summary span {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details > p {
  max-width: 720px;
  margin: -2px 55px 30px 0;
  color: #5a635e;
  font-size: 14px;
  line-height: 1.75;
}

.closing {
  padding: clamp(100px, 12vw, 175px) clamp(30px, 6vw, 92px);
  color: var(--ivory-light);
  background: var(--green);
}

.closing > p:not(.eyebrow) {
  max-width: 600px;
  margin: 36px 0;
  color: rgba(251, 248, 241, 0.72);
  font-family: var(--serif);
  font-size: 20px;
}

.contact-rail {
  position: sticky;
  top: calc(var(--header-height) + var(--city-nav-height));
  align-self: start;
  height: calc(100svh - var(--header-height) - var(--city-nav-height));
  overflow-y: auto;
  color: var(--ivory-light);
  background: var(--green);
  scrollbar-width: thin;
  scrollbar-color: rgba(243, 238, 228, 0.3) transparent;
}

.contact-card {
  min-height: 100%;
  padding: clamp(26px, 3vw, 44px);
}

.contact-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(243, 238, 228, 0.18);
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin-top: 30px;
  font-size: clamp(41px, 4vw, 58px);
}

.contact-card > p {
  margin: 19px 0 20px;
  color: rgba(251, 248, 241, 0.68);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
}

.beta-form-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 10px;
  border: 1px solid rgba(182, 152, 99, 0.35);
  color: rgba(251, 248, 241, 0.67);
  font-size: 9px;
  line-height: 1.4;
}

.beta-form-note span {
  padding: 3px 6px;
  color: var(--green-deep);
  background: var(--gold);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label,
.contact-form legend {
  color: rgba(251, 248, 241, 0.62);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form legend span {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 39px;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid rgba(243, 238, 228, 0.26);
  border-radius: 0;
  outline: none;
  color: var(--ivory-light);
  background: transparent;
  font-family: var(--serif);
  font-size: 15px;
  transition: border-color 180ms ease;
}

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

.field select {
  padding-right: 24px;
  color-scheme: dark;
}

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

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

.contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form legend {
  margin-bottom: 8px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.city-choice-grid {
  grid-template-columns: repeat(2, 1fr);
}

[data-required-group][aria-invalid="true"] legend {
  color: #e3a5a0;
}

.choice-grid label {
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  display: block;
  padding: 6px 5px;
  border: 1px solid rgba(243, 238, 228, 0.2);
  color: rgba(251, 248, 241, 0.66);
  font-size: 8px;
  text-align: center;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.choice-grid input:checked + span {
  color: var(--green-deep);
  border-color: var(--gold);
  background: var(--gold);
}

.choice-grid input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 47px;
  padding: 0 17px;
  color: var(--green-deep);
  background: var(--ivory-light);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.submit-button:hover {
  color: var(--ivory-light);
  background: var(--oxblood);
}

.submit-button:disabled {
  color: rgba(14, 41, 33, 0.66);
  background: rgba(251, 248, 241, 0.7);
  cursor: wait;
}

.form-privacy {
  margin: 0;
  color: rgba(251, 248, 241, 0.62);
  font-size: 10px;
  line-height: 1.55;
}

.form-privacy a {
  color: var(--ivory-light);
  text-decoration: underline;
  text-decoration-color: rgba(182, 152, 99, 0.62);
  text-underline-offset: 3px;
}

.form-privacy a:hover {
  color: var(--gold);
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: #e0cda8;
  font-size: 10px;
  line-height: 1.5;
}

.form-status:not(:empty) {
  padding: 9px 11px;
  border-left: 2px solid var(--gold);
  background: rgba(14, 41, 33, 0.35);
}

.form-status[data-state="success"] {
  color: #d7e9d2;
  border-left-color: #8fbd86;
}

.form-status[data-state="error"] {
  color: #f0c0bc;
  border-left-color: #e3a5a0;
}

.site-footer {
  position: relative;
  z-index: 4;
  padding: clamp(72px, 8vw, 112px) clamp(26px, 5vw, 78px) 30px;
  color: var(--ivory-light);
  background: #0a1d17;
}

.footer-lead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 65px;
  border-bottom: 1px solid rgba(243, 238, 228, 0.17);
}

.footer-brand .brand-mark {
  width: 46px;
  height: 46px;
}

.footer-brand .brand-name {
  font-size: 26px;
}

.footer-brand .brand-city {
  color: var(--gold);
  font-size: 9px;
}

.footer-lead > p {
  margin: 0;
  color: rgba(251, 248, 241, 0.66);
  font-family: var(--serif);
  font-size: 20px;
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.72fr 0.72fr 0.82fr 1.45fr;
  gap: clamp(28px, 4.5vw, 76px);
  padding: 62px 0;
  border-bottom: 1px solid rgba(243, 238, 228, 0.17);
}

.footer-grid h2 {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid button {
  display: block;
  width: max-content;
  margin: 0 0 11px;
  padding: 0;
  color: rgba(251, 248, 241, 0.72);
  background: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 15px;
  text-align: left;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--gold);
}

.company-block p {
  max-width: 520px;
  margin: 0 0 14px;
  color: rgba(251, 248, 241, 0.57);
  font-size: 11px;
  line-height: 1.65;
}

.company-block p:first-of-type {
  color: rgba(251, 248, 241, 0.8);
  font-family: var(--serif);
  font-size: 17px;
}

.footer-disclosure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(35px, 6vw, 85px);
  padding: 35px 0;
  border-bottom: 1px solid rgba(243, 238, 228, 0.17);
}

.footer-disclosure p {
  margin: 0;
  color: rgba(251, 248, 241, 0.43);
  font-size: 9px;
  line-height: 1.75;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 28px;
  color: rgba(251, 248, 241, 0.5);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:nth-child(2) {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.footer-bottom a {
  justify-self: end;
}

.mobile-contact-trigger {
  display: none;
}

dialog {
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
}

dialog::backdrop {
  background: rgba(4, 14, 11, 0.78);
  backdrop-filter: blur(6px);
}

.contact-dialog {
  width: min(620px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  overflow-y: auto;
  padding: 28px;
  color: var(--ivory-light);
  background: var(--green);
  box-shadow: var(--shadow);
}

.dialog-head,
.legal-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.dialog-head .eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
}

.contact-dialog h2 {
  font-size: clamp(40px, 8vw, 60px);
}

.contact-dialog > p {
  color: rgba(251, 248, 241, 0.63);
  font-family: var(--serif);
  font-size: 16px;
}

.dialog-close {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(243, 238, 228, 0.25);
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
}

.modal-form {
  margin-top: 25px;
}

.legal-dialog {
  width: min(900px, calc(100% - 30px));
  max-height: calc(100svh - 30px);
  color: var(--ink);
  background: var(--ivory-light);
  box-shadow: var(--shadow);
}

.legal-dialog-shell {
  max-height: inherit;
  overflow-y: auto;
  padding: clamp(26px, 5vw, 64px);
}

.legal-dialog-header {
  position: sticky;
  top: calc(-1 * clamp(26px, 5vw, 64px));
  z-index: 2;
  margin: calc(-1 * clamp(26px, 5vw, 64px)) calc(-1 * clamp(26px, 5vw, 64px)) 38px;
  padding: clamp(26px, 5vw, 64px) clamp(26px, 5vw, 64px) 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.96);
  backdrop-filter: blur(12px);
}

.legal-dialog-header .eyebrow {
  margin-bottom: 12px;
}

.legal-dialog-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.legal-dialog-header .dialog-close {
  color: var(--ink);
  border-color: var(--line);
}

.legal-copy {
  max-width: 740px;
}

.legal-copy h3 {
  margin: 34px 0 9px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.legal-copy h3:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: #4f5a54;
  font-size: 13px;
  line-height: 1.75;
}

.legal-copy ul {
  padding-left: 19px;
}

.legal-copy a,
.legal-copy button {
  padding: 0;
  color: var(--oxblood);
  background: none;
  cursor: pointer;
  text-decoration: underline;
}

.legal-copy .legal-callout {
  margin: 30px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
}

.legal-copy .legal-callout p {
  margin: 0;
}

.noscript-notice {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 200;
  max-width: 500px;
  padding: 16px;
  color: white;
  background: var(--oxblood);
  font-size: 12px;
}

.legal-page-body {
  min-height: 100vh;
  background: var(--ivory-light);
}

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

.standalone-legal {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 140px) 0 clamp(96px, 12vw, 160px);
  border-right: 0;
}

.standalone-legal-hero {
  margin-bottom: 58px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.standalone-legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 9vw, 104px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.standalone-legal-hero > p:last-child {
  margin: 28px 0 0;
  color: var(--stone-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.standalone-legal .legal-copy {
  max-width: 760px;
}

.standalone-legal .legal-copy h2 {
  margin: 42px 0 10px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.standalone-legal .legal-copy h2:first-of-type {
  margin-top: 0;
}

.legal-page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px clamp(24px, 4vw, 58px);
  border-top: 1px solid rgba(243, 238, 228, 0.15);
  color: rgba(251, 248, 241, 0.55);
  background: #0a1d17;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-page-footer p {
  margin: 0;
}

.legal-page-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.legal-page-footer a:hover {
  color: var(--gold);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.motion-ready .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .site-header:has(.city-switcher) {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-header:has(.city-switcher) .city-switcher {
    display: none;
  }

  .experience-shell {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .contact-card {
    padding: 27px;
  }

  .contact-card h2 {
    margin-top: 22px;
    font-size: 43px;
  }

  .contact-card > p {
    margin: 13px 0 15px;
    font-size: 14px;
  }

  .contact-form {
    gap: 11px;
  }

  .choice-grid {
    gap: 5px;
  }

  .choice-grid span {
    font-size: 7px;
  }

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

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

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

  .site-header:has(.city-switcher) {
    grid-template-columns: 1fr auto;
    gap: 0;
  }

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

  .legal-page-header .header-cta {
    display: inline-flex;
  }

  .menu-button {
    display: grid;
    width: 40px;
    height: 40px;
    place-content: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms 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;
    top: calc(var(--header-height) + var(--beta-height) + var(--city-nav-height));
    right: 0;
    left: 0;
    z-index: 75;
    display: grid;
    padding: 24px 28px 30px;
    color: var(--ivory-light);
    background: var(--green-deep);
    box-shadow: 0 22px 48px rgba(4, 14, 11, 0.25);
  }

  .site-header.scrolled ~ .mobile-menu {
    top: calc(var(--header-height) + var(--city-nav-height));
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a,
  .mobile-menu button {
    padding: 14px 0;
    border-bottom: 1px solid rgba(243, 238, 228, 0.15);
    color: inherit;
    background: transparent;
    font-family: var(--serif);
    font-size: 24px;
    text-align: left;
  }

  .mobile-menu button {
    margin-top: 17px;
    padding: 15px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
  }

  .experience-shell {
    display: block;
  }

  main {
    border-right: 0;
  }

  .contact-rail {
    display: none;
  }

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

  .hero-content {
    padding-bottom: 84px;
  }

  .mobile-contact-trigger {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 65;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 20px;
    color: var(--green-deep);
    background: var(--gold);
    box-shadow: 0 12px 34px rgba(4, 14, 11, 0.24);
    cursor: pointer;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 220ms ease;
  }

  .mobile-contact-trigger.hidden-at-footer {
    transform: translateY(100px);
  }

  .site-footer {
    padding-bottom: 95px;
  }

}

@media (max-width: 720px) {
  .beta-bar {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .site-header {
    padding: 0 18px;
  }

  .global-city-nav {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-right: 18px;
    padding-left: 18px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .global-city-nav::-webkit-scrollbar {
    display: none;
  }

  .global-city-nav > span {
    display: none;
  }

  .hero-content {
    justify-content: flex-end;
    padding: 70px 24px 82px;
  }

  .hero h1 {
    font-size: clamp(53px, 15.5vw, 76px);
  }

  .hero-intro {
    max-width: 520px;
    margin-top: 25px;
    font-size: 18px;
  }

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

  .hero-proof {
    gap: 9px 16px;
    margin-top: 34px;
    font-size: 8px;
  }

  .hero-proof li:not(:first-child)::before {
    margin-right: 16px;
  }

  .image-caption {
    display: none;
  }

  .section-pad,
  .perspectives,
  .milan-note,
  .closing {
    padding-right: 24px;
    padding-left: 24px;
  }

  .premise {
    display: block;
  }

  .section-number {
    margin-bottom: 32px;
  }

  .section-pad h2,
  .perspectives h2,
  .milan-note h2,
  .closing h2 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .lead-copy {
    margin-top: 30px;
    font-size: 19px;
  }

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

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

  .city-card {
    min-height: 360px;
  }

  .city-switcher-inline {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .city-switcher-inline select {
    width: 100%;
    max-width: none;
  }

  .principle {
    min-height: 0;
    padding: 35px 24px 42px;
  }

  .principle + .principle {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principle h3 {
    margin: 55px 0 18px;
    font-size: 31px;
  }

  .section-heading {
    display: block;
    margin-bottom: 55px;
  }

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

  .service-row {
    grid-template-columns: 36px 1fr;
    gap: 8px 15px;
    padding: 28px 0;
  }

  .service-row:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .service-icon {
    grid-column: 2;
    grid-row: 1;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }

  .service-copy {
    grid-column: 2;
  }

  .service-index {
    grid-row: 1 / span 2;
  }

  .service-copy h3 {
    font-size: 29px;
  }

  .profile-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .profile-brief {
    margin: 32px 0 26px;
    font-size: 27px;
  }

  .process-list li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 30px 0;
  }

  .milan-note {
    min-height: 570px;
  }

  .milan-pattern {
    top: auto;
    right: -280px;
    bottom: -300px;
    transform: none;
  }

  .milan-note p:last-child {
    font-size: 19px;
  }

  .accordion summary {
    font-size: 20px;
    line-height: 1.3;
  }

  .footer-lead {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-lead > p {
    text-align: left;
  }

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

  .footer-grid {
    gap: 40px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

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

  .field-pair {
    grid-template-columns: 1fr;
  }

  .legal-page-header .brand-city {
    display: block;
  }

  .legal-page-header .header-cta {
    display: inline-flex;
  }

  .legal-back-link {
    font-size: 8px;
  }

  .standalone-legal {
    width: min(100% - 40px, 900px);
    padding-top: 72px;
  }

  .standalone-legal-hero {
    margin-bottom: 42px;
    padding-bottom: 38px;
  }

  .standalone-legal-hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .legal-page-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-page-footer nav {
    gap: 14px 20px;
  }

}

@media (max-height: 780px) and (min-width: 981px) {
  .hero-content {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero h1 {
    font-size: clamp(60px, 6vw, 82px);
  }

  .hero-intro {
    margin-top: 20px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-proof {
    margin-top: 24px;
  }

  .contact-card {
    padding-top: 23px;
    padding-bottom: 23px;
  }

  .contact-card h2 {
    margin-top: 18px;
    font-size: 39px;
  }

  .contact-card > p {
    margin: 10px 0 12px;
    font-size: 13px;
  }

  .contact-form {
    gap: 8px;
  }

  .beta-form-note {
    margin-bottom: 12px;
    padding: 6px 8px;
  }

  .field input,
  .field select {
    min-height: 32px;
  }

  .field textarea {
    min-height: 34px;
  }

  .submit-button {
    min-height: 41px;
  }
}

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