:root {
  --black: #050606;
  --ink: #111111;
  --charcoal: #1b1b1a;
  --ivory: #f5f0e8;
  --paper: #fbf8f2;
  --stone: #d8d0c3;
  --muted: #766f66;
  --line: rgba(17, 17, 17, 0.16);
  --white-line: rgba(255, 255, 255, 0.18);
  --cyan: #1097bf;
  --cyan-soft: #80d7ed;
  --gold: #bfa36f;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  --max: 1240px;
  --serif: Didot, "Bodoni 72", "Bodoni 72 Smallcaps", "Iowan Old Style", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 2px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 34px;
  color: var(--ivory);
  background: rgba(5, 6, 6, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.header.scrolled {
  background: rgba(5, 6, 6, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-seal {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--ivory);
  border: 1px solid var(--ivory);
  outline: 2px solid rgba(16, 151, 191, 0.72);
  outline-offset: 3px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-copy small {
  color: rgba(245, 240, 232, 0.72);
  font-size: 11px;
  font-weight: 500;
}

.nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav a,
.header-phone {
  position: relative;
  color: rgba(245, 240, 232, 0.82);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

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

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after,
.header-phone:hover::after,
.header-phone:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  justify-self: end;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 240, 232, 0.24);
  border-radius: 2px;
  background: transparent;
  color: var(--ivory);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 138px 34px 46px;
  color: var(--ivory);
  background: var(--black);
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.86) 0%, rgba(5, 6, 6, 0.56) 38%, rgba(5, 6, 6, 0.14) 76%),
    linear-gradient(0deg, rgba(5, 6, 6, 0.86) 0%, rgba(5, 6, 6, 0.02) 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.overline {
  margin: 0 0 18px;
  color: var(--cyan-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.overline.dark {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 82px;
  font-weight: 500;
  line-height: 0.95;
}

h1 span {
  display: block;
  font-style: italic;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(245, 240, 232, 0.78);
  font-size: 20px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 170ms ease, color 170ms ease, transform 170ms ease, border-color 170ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-light {
  color: var(--black);
  background: var(--ivory);
  border-color: var(--ivory);
}

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

.button-ghost {
  color: var(--ivory);
  background: rgba(245, 240, 232, 0.04);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--black);
  background: var(--ivory);
}

.button-dark {
  width: 100%;
  color: var(--ivory);
  background: var(--black);
  border-color: var(--black);
}

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

.hero-ledger {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.hero-ledger a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: rgba(245, 240, 232, 0.78);
  border-right: 1px solid var(--white-line);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  transition: color 170ms ease, background 170ms ease;
}

.hero-ledger a:hover,
.hero-ledger a:focus-visible {
  color: var(--ivory);
  background: rgba(245, 240, 232, 0.06);
}

.hero-ledger a:last-child {
  border-right: 0;
}

.marquee {
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.marquee div {
  width: min(100% - 68px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.marquee span {
  color: rgba(245, 240, 232, 0.68);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.statement,
.service-index,
.atelier,
.waterfront,
.portfolio,
.reveal-section,
.signature,
.programs,
.method,
.founder,
.commission,
.page-hero-inner,
.detail-section,
.page-cta {
  width: min(100% - 68px, var(--max));
  margin: 0 auto;
}

.page-main {
  padding-top: 78px;
}

.page-hero {
  position: relative;
  min-height: 62svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px 34px 76px;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

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

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.94) 0%, rgba(251, 250, 246, 0.76) 38%, rgba(251, 250, 246, 0.16) 72%),
    linear-gradient(0deg, rgba(247, 248, 247, 0.86) 0%, rgba(247, 248, 247, 0) 60%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
}

.page-hero p:not(.overline) {
  max-width: 610px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 19px;
  line-height: 1.68;
}

.detail-section {
  padding: 104px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 68px;
  align-items: start;
}

.detail-copy h2 {
  margin-bottom: 24px;
}

.detail-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.74;
}

.detail-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--black);
  box-shadow: 0 20px 70px rgba(5, 6, 6, 0.13);
}

.detail-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.feature-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list dt {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}

.page-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  margin-bottom: 104px;
  padding: 42px;
  color: var(--ivory);
  background: var(--black);
}

.page-cta h2 {
  margin-bottom: 14px;
  color: var(--ivory);
  font-size: 42px;
}

.page-cta p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(251, 250, 246, 0.68);
}

.page-cta .button {
  min-width: 184px;
  color: var(--black);
  background: var(--ivory);
  border-color: var(--ivory);
}

.page-cta .button:hover,
.page-cta .button:focus-visible {
  color: var(--ivory);
  background: transparent;
}

.statement {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 86px;
  padding: 118px 0;
}

h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 500;
  line-height: 1;
}

.statement-copy p,
.atelier-copy p,
.reveal-copy p,
.founder-copy p,
.commission-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.78;
}

.statement-copy p:last-child,
.atelier-copy p:last-child,
.reveal-copy p:last-child,
.founder-copy p:last-child,
.commission-copy p:last-child {
  margin-bottom: 0;
}

.service-index {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: stretch;
  margin-bottom: 118px;
  padding: 42px;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(16, 151, 191, 0.12), transparent 30%),
    linear-gradient(180deg, #070808 0%, #111313 100%);
  box-shadow: var(--shadow);
}

.service-index-heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.service-index-heading h2 {
  max-width: 480px;
  color: var(--ivory);
}

.service-index-heading p:not(.overline) {
  max-width: 430px;
  margin-top: 28px;
  color: rgba(245, 240, 232, 0.7);
  font-size: 17px;
  line-height: 1.7;
}

.service-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(245, 240, 232, 0.16);
  border-left: 1px solid rgba(245, 240, 232, 0.16);
}

.service-card {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  padding: 26px;
  color: var(--ivory);
  text-align: left;
  background: rgba(245, 240, 232, 0.02);
  border: 0;
  border-right: 1px solid rgba(245, 240, 232, 0.16);
  border-bottom: 1px solid rgba(245, 240, 232, 0.16);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  background: rgba(16, 151, 191, 0.12);
  transform: translateY(-2px);
  outline: 0;
}

.service-card span {
  color: var(--cyan-soft);
  font-family: var(--serif);
  font-size: 24px;
}

.service-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.service-card em {
  display: block;
  color: rgba(245, 240, 232, 0.68);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}

.atelier {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
  min-height: 680px;
  color: var(--ivory);
  background: var(--black);
  box-shadow: var(--shadow);
}

.atelier-image {
  min-height: 520px;
}

.atelier-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atelier-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
}

.atelier-copy h2 {
  margin-bottom: 24px;
  color: var(--ivory);
}

.atelier-copy p {
  color: rgba(245, 240, 232, 0.72);
}

.atelier-facts {
  display: grid;
  gap: 18px;
  margin: 38px 0 0;
  padding: 0;
}

.atelier-facts div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 240, 232, 0.16);
}

.atelier-facts dt {
  color: var(--cyan-soft);
  font-family: var(--serif);
  font-size: 24px;
}

.atelier-facts dd {
  margin: 0;
  color: rgba(245, 240, 232, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.waterfront {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  margin-top: 118px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.waterfront-media {
  min-height: 620px;
  background: var(--black);
}

.waterfront-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.waterfront-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 0 58px 64px;
}

.waterfront-copy h2 {
  margin-bottom: 24px;
}

.waterfront-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.waterfront-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.waterfront-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.waterfront-list dt {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.waterfront-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.portfolio {
  padding: 126px 0 64px;
}

.portfolio-heading {
  max-width: 790px;
  margin-bottom: 52px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
}

.portfolio-panel {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
}

.portfolio-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.portfolio-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 6, 0.78) 0%, rgba(5, 6, 6, 0.02) 62%);
}

.portfolio-panel:hover img {
  transform: scale(1.035);
}

.portfolio-panel div {
  position: relative;
  z-index: 1;
  padding: 34px;
}

.portfolio-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-panel h3 {
  max-width: 560px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.08;
}

.panel-residential {
  margin-top: 84px;
}

.panel-waterfront {
  grid-column: 1 / -1;
  min-height: 560px;
}

.panel-waterfront h3 {
  max-width: 780px;
}

.reveal-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 126px;
}

.reveal-copy h2 {
  margin-bottom: 24px;
}

.reveal {
  --pos: 48%;
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
  box-shadow: 0 24px 80px rgba(5, 6, 6, 0.16);
}

.reveal > img,
.reveal-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reveal > img {
  object-fit: cover;
}

.reveal-before {
  background-image: linear-gradient(rgba(38, 32, 25, 0.36), rgba(38, 32, 25, 0.36)), url("assets/residential-stone-restoration.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) sepia(0.34) brightness(0.62) contrast(1.28);
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.reveal-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 1px;
  background: rgba(245, 240, 232, 0.85);
}

.reveal-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(245, 240, 232, 0.92);
  background: rgba(5, 6, 6, 0.56);
  backdrop-filter: blur(10px);
}

.reveal-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.reveal-labels {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(245, 240, 232, 0.76);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.signature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
  padding: 104px 0;
  border-top: 1px solid var(--line);
}

.signature-intro {
  position: sticky;
  top: 116px;
}

.signature-intro h2 {
  margin-bottom: 24px;
}

.signature-intro p:not(.overline) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.signature-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.signature-grid article {
  display: grid;
  grid-template-columns: 116px 0.85fr 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.signature-grid span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.signature-grid h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.signature-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.programs {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: stretch;
  padding: 56px;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(191, 163, 111, 0.16), transparent 34%),
    linear-gradient(180deg, #080909 0%, #151716 100%);
  box-shadow: var(--shadow);
}

.programs-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.programs-copy h2 {
  margin-bottom: 24px;
  color: var(--ivory);
}

.programs-copy p:not(.overline) {
  color: rgba(245, 240, 232, 0.7);
  font-size: 18px;
  line-height: 1.72;
}

.program-list {
  display: grid;
  border-top: 1px solid rgba(245, 240, 232, 0.16);
}

.program-list a {
  display: grid;
  grid-template-columns: 58px 0.7fr 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.16);
  transition: color 180ms ease, transform 180ms ease;
}

.program-list a:hover,
.program-list a:focus-visible {
  color: var(--cyan-soft);
  transform: translateX(4px);
  outline: 0;
}

.program-list span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
}

.program-list strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.04;
}

.program-list em {
  color: rgba(245, 240, 232, 0.66);
  font-size: 15px;
  font-style: normal;
  line-height: 1.56;
}

.method {
  padding: 118px 0;
  border-top: 1px solid var(--line);
}

.method-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.method-steps article {
  min-height: 310px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.24);
}

.method-steps span {
  display: block;
  margin-bottom: 68px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.method-steps h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.05;
}

.method-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.founder {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 66px;
  align-items: center;
  padding: 52px 0 126px;
}

.founder-copy h2 {
  margin-bottom: 22px;
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.digital-card {
  position: relative;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(16, 151, 191, 0.13) 0 18%, transparent 19%),
    radial-gradient(circle at 92% 102%, rgba(16, 151, 191, 0.18) 0 24%, transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #f1f4f3 52%, #fbfaf6 100%);
  border: 1px solid rgba(17, 17, 17, 0.14);
  box-shadow: 0 20px 60px rgba(5, 6, 6, 0.12);
}

.digital-card::before,
.digital-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.digital-card::before {
  inset: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.digital-card::after {
  right: 26px;
  bottom: 26px;
  width: 64px;
  height: 2px;
  background: var(--cyan);
}

.digital-card strong {
  display: block;
  max-width: 260px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.03;
}

.digital-card em {
  display: block;
  margin-top: 8px;
  color: var(--cyan);
  font-style: normal;
  font-weight: 700;
}

.digital-card a,
.digital-card span {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.digital-card-back {
  color: var(--ivory);
  background:
    radial-gradient(circle at 12% 0%, rgba(128, 215, 237, 0.18) 0 19%, transparent 20%),
    radial-gradient(circle at 92% 102%, rgba(16, 151, 191, 0.22) 0 24%, transparent 25%),
    linear-gradient(135deg, #090a0a 0%, #191b1b 55%, #070808 100%);
  border-color: rgba(251, 250, 246, 0.16);
}

.digital-card-back::before {
  border-color: rgba(251, 250, 246, 0.1);
}

.digital-card-back strong {
  color: var(--ivory);
}

.digital-card-back a,
.digital-card-back span {
  color: rgba(251, 250, 246, 0.72);
}

.mini-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  outline: 2px solid rgba(16, 151, 191, 0.6);
  outline-offset: 3px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1;
}

.card-stack img {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.08);
  box-shadow: 0 20px 60px rgba(5, 6, 6, 0.14);
}

.commission {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 70px;
  align-items: start;
  padding: 104px 0;
  color: var(--ivory);
}

.commission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -1;
  background: var(--black);
}

.commission-copy h2 {
  margin-bottom: 24px;
  color: var(--ivory);
}

.commission-copy p {
  color: rgba(245, 240, 232, 0.7);
}

.commission-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.commission-form label,
.commission-form fieldset {
  display: grid;
  gap: 8px;
}

.commission-form span,
.commission-form legend {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.commission-form input,
.commission-form select,
.commission-form textarea {
  width: 100%;
  min-height: 50px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.34);
  border-radius: 0;
  padding: 10px 0;
  outline: 0;
}

.commission-form textarea {
  resize: vertical;
}

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

.commission-form fieldset {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 16px 0 4px;
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.commission-form legend {
  grid-column: 1 / -1;
  padding: 0;
}

.commission-form fieldset label {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.commission-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: auto;
  accent-color: var(--cyan);
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.footer {
  min-height: 112px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 34px;
  color: var(--ivory);
  background: var(--black);
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

.footer div {
  display: grid;
  gap: 4px;
}

.footer strong {
  font-size: 15px;
  font-weight: 800;
}

.footer span,
.footer a {
  color: rgba(245, 240, 232, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.mobile-bar {
  display: none;
}

.motion-ready .scroll-reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1060px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 0;
    background: rgba(5, 6, 6, 0.96);
    border: 1px solid rgba(245, 240, 232, 0.12);
  }

  .nav.open {
    display: grid;
  }

  .nav a {
    padding: 18px;
    color: rgba(251, 250, 246, 0.82);
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .header-phone {
    display: none;
  }

  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 48px;
  }

  .statement,
  .service-index,
  .atelier,
  .waterfront,
  .reveal-section,
  .signature,
  .programs,
  .founder,
  .commission,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .service-index-heading {
    min-height: auto;
  }

  .signature-intro {
    position: static;
  }

  .programs {
    padding: 42px;
  }

  .program-list a {
    grid-template-columns: 62px 1fr;
  }

  .program-list em {
    grid-column: 2;
  }

  .signature-grid article {
    grid-template-columns: 92px 1fr;
  }

  .signature-grid p {
    grid-column: 2;
  }

  .atelier {
    min-height: auto;
  }

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

  .panel-residential {
    margin-top: 0;
  }

  .panel-waterfront {
    grid-column: auto;
  }

  .portfolio-panel {
    min-height: 560px;
  }

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

  .page-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header {
    height: 70px;
    padding: 0 18px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    max-width: 190px;
    font-size: 13px;
  }

  .brand-seal {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 15px;
  }

  .nav {
    top: 70px;
  }

  .hero {
    min-height: auto;
    padding: 104px 20px 44px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 6, 6, 0.82) 0%, rgba(5, 6, 6, 0.58) 70%, rgba(5, 6, 6, 0.22) 100%),
      linear-gradient(0deg, rgba(5, 6, 6, 0.78) 0%, rgba(5, 6, 6, 0.08) 58%);
  }

  .overline {
    margin-bottom: 14px;
    font-size: 10px;
  }

  h1 {
    max-width: 350px;
    font-size: 38px;
    line-height: 1.02;
  }

  .hero-text {
    max-width: 350px;
    font-size: 15.5px;
    line-height: 1.56;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 350px);
  }

  .hero-ledger {
    width: min(100%, 350px);
    grid-template-columns: 1fr 1fr;
  }

  .hero-ledger a {
    min-height: 48px;
    padding: 0 12px;
    border-bottom: 1px solid var(--white-line);
  }

  .hero-ledger a:nth-child(2n) {
    border-right: 0;
  }

  .hero-ledger a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .marquee div,
  .statement,
  .service-index,
  .atelier,
  .waterfront,
  .portfolio,
  .reveal-section,
  .signature,
  .programs,
  .method,
  .founder,
  .commission {
    width: min(100% - 40px, var(--max));
  }

  .page-hero-inner,
  .detail-section,
  .page-cta {
    width: min(100% - 40px, var(--max));
  }

  .page-main {
    padding-top: 70px;
  }

  .page-hero {
    min-height: 560px;
    padding: 92px 20px 48px;
  }

  .page-hero::after {
    background:
      linear-gradient(90deg, rgba(251, 250, 246, 0.9) 0%, rgba(251, 250, 246, 0.62) 72%, rgba(251, 250, 246, 0.08) 100%),
      linear-gradient(0deg, rgba(247, 248, 247, 0.88) 0%, rgba(247, 248, 247, 0.12) 64%);
  }

  .page-hero h1 {
    max-width: 330px;
  }

  .page-hero p:not(.overline) {
    max-width: 326px;
    font-size: 16px;
    line-height: 1.62;
  }

  .detail-section {
    padding: 72px 0;
  }

  .detail-grid {
    gap: 32px;
  }

  .detail-media {
    min-height: 360px;
  }

  .detail-copy p {
    font-size: 16px;
    line-height: 1.68;
  }

  .feature-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .page-cta {
    margin-bottom: 76px;
    padding: 28px 22px;
  }

  .page-cta h2 {
    font-size: 34px;
  }

  .marquee div {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .statement {
    gap: 28px;
    padding: 76px 0;
  }

  .service-index {
    gap: 30px;
    margin-bottom: 76px;
    padding: 26px 20px;
  }

  .service-index-heading p:not(.overline) {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.62;
  }

  .service-index-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 178px;
    padding: 22px;
  }

  .service-card strong {
    font-size: 26px;
  }

  h2 {
    font-size: 38px;
    line-height: 1.04;
  }

  .statement-copy p,
  .atelier-copy p,
  .reveal-copy p,
  .founder-copy p,
  .commission-copy p {
    font-size: 16px;
    line-height: 1.68;
  }

  .atelier-image {
    min-height: 360px;
  }

  .atelier-copy {
    padding: 32px 22px;
  }

  .atelier-facts div {
    grid-template-columns: 38px 1fr;
  }

  .waterfront {
    margin-top: 76px;
  }

  .waterfront-media {
    min-height: 400px;
  }

  .waterfront-copy {
    padding: 32px 0 0;
  }

  .waterfront-copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .waterfront-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .portfolio {
    padding: 76px 0 40px;
  }

  .portfolio-heading {
    margin-bottom: 32px;
  }

  .portfolio-panel {
    min-height: 470px;
  }

  .portfolio-panel div {
    padding: 24px;
  }

  .portfolio-panel h3 {
    font-size: 27px;
  }

  .reveal-section {
    gap: 30px;
    padding: 54px 0 82px;
  }

  .reveal {
    min-height: 420px;
  }

  .signature {
    gap: 30px;
    padding: 72px 0;
  }

  .signature-intro p:not(.overline) {
    font-size: 16px;
    line-height: 1.65;
  }

  .signature-grid article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .signature-grid p {
    grid-column: auto;
  }

  .signature-grid h3 {
    font-size: 27px;
  }

  .programs {
    gap: 30px;
    padding: 28px 22px;
  }

  .programs-copy p:not(.overline) {
    font-size: 16px;
    line-height: 1.65;
  }

  .program-list a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .program-list em {
    grid-column: auto;
  }

  .program-list strong {
    font-size: 27px;
  }

  .method {
    padding: 76px 0;
  }

  .method-heading {
    margin-bottom: 34px;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-steps article {
    min-height: auto;
  }

  .method-steps span {
    margin-bottom: 34px;
  }

  .founder {
    gap: 34px;
    padding: 42px 0 82px;
  }

  .card-stack {
    grid-template-columns: 1fr;
  }

  .digital-card {
    min-height: 220px;
    padding: 26px;
  }

  .commission {
    gap: 34px;
    width: 100%;
    padding: 0 0 64px;
  }

  .commission::before {
    height: 100%;
  }

  .commission-copy,
  .commission-form {
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
  }

  .commission-copy {
    padding: 42px 0 28px;
  }

  .commission-copy h2 {
    max-width: 100%;
    font-size: 34px;
  }

  .commission-form {
    padding: 24px 20px;
  }

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

  .footer {
    display: grid;
    padding: 28px 20px;
  }

  .mobile-bar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 20px 18px;
    background: var(--black);
    border-top: 1px solid rgba(245, 240, 232, 0.12);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-bar a {
    min-height: 46px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--ivory);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-bar a:last-child {
    color: var(--ivory);
    background: var(--cyan);
  }
}

@media (max-width: 430px) {
  h1 {
    max-width: 330px;
    font-size: 36px;
  }

  .hero-text,
  .hero-actions,
  .hero-ledger {
    max-width: 330px;
  }

  .button {
    min-height: 48px;
    padding: 0 16px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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