.site-header {
  margin-top: 22px;
  border-radius: 100px;
  height: 74px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 30px;
}
.wordmark {
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -0.095em;
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;
}
.logo-dot {
  width: 5px;
  height: 5px;
  background: currentColor;
  margin-left: 6px;
  border-radius: 50%;
  margin-top: 3px;
}
.desktop-nav {
  margin: auto;
  display: flex;
  gap: 35px;
  font-size: 11px;
}
.desktop-nav a {
  padding: 16px 0;
}
.desktop-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  font-size: 11px;
}
.header-cta svg {
  width: 18px;
}
.menu-toggle {
  display: none;
}
.mobile-menu {
  position: absolute;
  z-index: 20;
  top: 96px;
  left: 20px;
  right: 20px;
  background: var(--milk);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px #3e2d2520;
}
.mobile-menu a {
  display: block;
  padding: 14px;
}
.hero {
  padding-top: 45px;
}
.hero-top {
  display: flex;
  justify-content: space-between;
}
.hero-top .eyebrow {
  font-size: 9px;
}
.hero-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 31px;
}
.hero h1 {
  font-size: clamp(60px, 7.2vw, 102px);
  letter-spacing: -0.065em;
  line-height: 1.03;
}
.hero h1 em {
  font-size: 1.1em;
  letter-spacing: -0.055em;
}
.asterisk {
  font-size: 104px;
  line-height: 1;
  margin-right: 48px;
  font-weight: 300;
  color: var(--taupe);
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin: 28px 0 35px;
}
.hero-bottom > p {
  max-width: 330px;
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
}
.hero-visual {
  height: 440px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-visual > img {
  width: 100%;
  height: 100%;
  object-position: 50% 58%;
}
.visual-topline {
  position: absolute;
  inset: 23px 28px auto;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #49372b;
}
.glass-caption {
  position: absolute;
  left: 26px;
  bottom: 26px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 18px;
  font-size: 12px;
  max-width: calc(100% - 52px);
}
.caption-mark {
  font-size: 37px;
  line-height: 1;
  letter-spacing: -0.09em;
}
.glass-caption small {
  display: block;
  font-size: 7px;
  letter-spacing: 0.12em;
  margin-top: 5px;
}
.round-arrow {
  font-size: 24px;
  margin-left: 16px;
}
.visual-index {
  position: absolute;
  right: 28px;
  bottom: 30px;
  font-size: 11px;
  color: var(--milk);
}
.hero-footnote {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  color: var(--muted);
}
.hero-footnote a {
  padding: 3px;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 2.05fr;
  gap: 35px;
}
.intro > .eyebrow {
  padding-top: 14px;
}
.intro h2 {
  font-size: clamp(35px, 3.8vw, 55px);
}
.intro-copy {
  max-width: 520px;
  margin-top: 30px;
  font-size: 14px;
  color: var(--muted);
}
.projects {
  border-top: 1px solid var(--line);
  padding-top: 72px;
}
.project-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 32px;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter {
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 11px;
  min-height: 42px;
}
.filter.is-active {
  background: var(--chocolate);
  color: var(--milk);
  border-color: var(--chocolate);
}
.filter span {
  font-size: 9px;
  margin-left: 5px;
  opacity: 0.7;
}
.project-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 56px 34px;
  align-items: start;
}
.project-card:nth-of-type(2) {
  margin-top: 110px;
}
.project-card.project-2 {
  grid-column: 1/-1;
}
.project-card.project-2 .project-image {
  height: 330px;
}
.project-card.project-2 .project-brand {
  font-size: 85px;
}
.project-open {
  padding: 0;
  background: none;
  width: 100%;
  text-align: left;
}
.project-image {
  position: relative;
  height: 510px;
  border-radius: var(--radius);
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.91);
}
.project-open:hover img {
  transform: scale(1.035);
}
.project-tag {
  position: absolute;
  top: 21px;
  left: 23px;
  font-size: 9px;
  letter-spacing: 0.04em;
  background: #f7f4efdf;
  padding: 6px 11px;
  border-radius: 100px;
}
.project-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fffaf3;
  font-size: clamp(65px, 7vw, 110px);
  letter-spacing: -0.055em;
  font-weight: 400;
  width: 90%;
  text-align: center;
  overflow-wrap: anywhere;
  line-height: 1;
}
.project-0 .project-brand {
  font-family: var(--serif);
  letter-spacing: 0.07em;
  font-size: 120px;
}
.project-visit {
  position: absolute;
  bottom: 20px;
  right: 20px;
  border: 1px solid #fff9;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 23px;
  background: #ffffff15;
}
.project-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 20px;
  gap: 8px;
}
.project-caption h3 {
  font-size: 22px;
}
.project-caption p {
  font-size: 11px;
  color: var(--muted);
  grid-column: 1;
}
.project-caption > span {
  font-size: 9px;
  grid-column: 2;
  grid-row: 1;
  color: var(--muted);
}
.projects-disclaimer {
  margin-top: 30px;
  color: var(--muted);
  font-size: 10px;
  max-width: 620px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.service-card {
  border-radius: 16px;
  padding: 26px 23px;
}
.service-card summary {
  list-style: none;
  cursor: pointer;
}
.service-card summary::-webkit-details-marker {
  display: none;
}
.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 47px;
}
.glass-icon {
  width: 58px;
  height: 62px;
  border-radius: 16px;
  transform: rotate(-7deg);
  display: grid;
  place-items: center;
  color: #705744;
}
.glass-icon svg {
  width: 32px;
  height: 36px;
  transform: rotate(7deg);
}
.service-card h3 {
  font-size: 25px;
}
.service-card summary p {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 18px;
  min-height: 80px;
}
.service-more {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  margin-top: 27px;
  font-size: 10px;
  align-items: center;
}
.service-more > span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s;
}
.service-card[open] .service-more > span {
  transform: rotate(45deg);
}
.service-card ul {
  padding-left: 16px;
  font-size: 11px;
  line-height: 1.7;
  margin: 20px 0 0;
}
.service-card li + li {
  margin-top: 10px;
}
.approach .section-heading {
  align-items: center;
}
.approach .eyebrow {
  color: #c3b2a3;
}
.approach h2 {
  font-size: clamp(40px, 4.8vw, 67px);
}
.orbit-mark {
  position: relative;
  display: block;
  width: 170px;
  height: 170px;
  margin: 0 40px;
}
.approach-copy {
  max-width: 370px;
  font-size: 13px;
  color: #c7b9ac;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 72px;
}
.step {
  border-top: 1px solid #f7f4ef35;
  padding-top: 20px;
}
.step-number {
  font-family: var(--serif);
  font-style: italic;
  color: #b7a291;
  font-size: 43px;
}
.step h3 {
  font-size: 22px;
  margin: 25px 0 18px;
}
.step p {
  font-size: 11px;
  line-height: 1.9;
  color: #c7b9ac;
}
.approach-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #bdad9d;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
}
.about-visual {
  position: relative;
  min-height: 630px;
  align-self: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--beige);
}
.about-visual > img {
  height: 100%;
  width: 100%;
  position: absolute;
}
.about-visual .glass-caption {
  font-size: 11px;
}
.about-content > .eyebrow {
  margin-bottom: 28px;
}
.about-content > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  margin-top: 29px;
}
.about blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 33px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 28px 0;
}
.team-roles > div {
  border-top: 1px solid var(--line);
  padding: 17px 0;
}
.team-roles h3 {
  font-size: 13px;
  letter-spacing: 0;
}
.team-roles p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 6px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
}
.contact h2 {
  margin-top: 28px;
  font-size: clamp(55px, 6.5vw, 90px);
  position: relative;
}
.contact h2 > span {
  font-family: var(--sans);
  font-size: 60px;
  position: absolute;
  right: 20px;
  top: 10px;
  font-weight: 300;
}
.contact-copy {
  max-width: 315px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
}
.contact-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  font-size: 12px;
}
.contact-links a {
  border-bottom: 1px solid var(--chocolate);
  padding: 6px 0;
}
.form-field {
  display: block;
  margin-bottom: 25px;
}
.form-field > span {
  display: block;
  font-size: 11px;
  margin-bottom: 10px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #3e2d2540;
  border-radius: 0;
  padding: 10px 0 15px;
  font-size: 14px;
  color: var(--chocolate);
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7b6a5e;
  opacity: 1;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 9px;
  line-height: 1.7;
  color: #65564b;
  margin-top: 20px;
}
.consent input {
  accent-color: var(--chocolate);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
}
.submit-button {
  width: 100%;
  margin-top: 24px;
}
.form-note,
.form-feedback {
  font-size: 10px;
  color: #65564b;
  margin-top: 12px;
}
.form-status {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--milk);
  margin-bottom: 20px;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.site-footer {
  padding-block: 44px 26px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.footer-top .wordmark {
  font-size: 44px;
}
.footer-top p {
  font-size: 10px;
}
.back-top {
  font-size: 11px;
  padding: 10px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom > span:last-child {
  font-size: 8px;
  letter-spacing: 0.08em;
}
.project-dialog,
.privacy-dialog {
  border: 0;
  background: var(--milk);
  color: var(--chocolate);
  padding: 0;
  border-radius: 20px;
  width: min(850px, calc(100% - 32px));
  max-height: 90dvh;
  overflow: auto;
  overscroll-behavior: contain;
}
.project-dialog::backdrop,
.privacy-dialog::backdrop {
  background: #1e1712b8;
}
.dialog-close {
  position: sticky;
  top: 16px;
  margin: 16px 16px -58px auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--milk);
  z-index: 2;
  font-size: 29px;
  line-height: 1;
  box-shadow: 0 2px 12px #0002;
}
.project-dialog > img {
  width: 100%;
  height: 300px;
}
.dialog-body {
  padding: 36px;
}
.dialog-body h2 {
  margin: 18px 0;
  font-size: 48px;
  overflow-wrap: anywhere;
}
.dialog-body p {
  margin-bottom: 20px;
  font-size: 14px;
}
.dialog-body .eyebrow {
  font-size: 10px;
}
.dialog-subtitle {
  font-size: 20px !important;
}
.privacy-dialog .dialog-body {
  padding-top: 65px;
}
.policy-text {
  white-space: pre-line;
}
