:root {
  --ink: #11100e;
  --charcoal: #1b1916;
  --graphite: #2c2924;
  --paper: #f7f4ee;
  --warm-paper: #eee7da;
  --stone: #d9cfbf;
  --line: #d8cebf;
  --muted: #6e675d;
  --sage: #596255;
  --gold: #a78952;
  --white: #ffffff;
  --focus: #c8a565;
  --max-width: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2.05rem, 4.4vw, 4.3rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(247, 244, 238, 0.94);
  border-bottom: 1px solid rgba(17, 16, 14, 0.1);
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 138px;
  height: 52px;
  object-fit: contain;
}

.brand-line {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(17, 16, 14, 0.18);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle__lines {
  display: grid;
  gap: 5px;
  width: 18px;
}

.nav-toggle__lines span {
  display: block;
  height: 1px;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: var(--graphite);
  font-size: 0.86rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: calc(68svh - var(--header-height));
  display: grid;
  align-items: end;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 4vw, 56px);
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(17, 16, 14, 0.9), rgba(17, 16, 14, 0.28)),
    var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
}

.hero--short {
  min-height: 58svh;
}

.hero__content,
.section__inner,
.footer__inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lede {
  max-width: 700px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.button--light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button--ghost-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.button--quiet {
  color: var(--ink);
  background: transparent;
  border-color: rgba(17, 16, 14, 0.24);
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 4vw, 56px);
}

.section--paper {
  background: var(--paper);
}

.section--warm {
  background: var(--warm-paper);
}

.section--ink {
  background: var(--ink);
  color: var(--white);
}

.section--sage {
  background: var(--sage);
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.section-heading p {
  max-width: 720px;
  color: var(--muted);
}

.section-kicker {
  max-width: 920px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.section--ink .section-heading p,
.section--sage .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(42px, 8vw, 96px);
  align-items: start;
}

.statement {
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5.2vw, 5.2rem);
  line-height: 1.05;
}

.statement-small {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.text-stack {
  display: grid;
  gap: 18px;
  color: var(--graphite);
}

.section--ink .text-stack,
.section--sage .text-stack {
  color: rgba(255, 255, 255, 0.78);
}

.memo-list {
  display: grid;
  border-top: 1px solid rgba(17, 16, 14, 0.16);
}

.section--ink .memo-list,
.section--sage .memo-list {
  border-color: rgba(255, 255, 255, 0.18);
}

.memo-list > div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 16, 14, 0.16);
}

.section--ink .memo-list > div,
.section--sage .memo-list > div {
  border-color: rgba(255, 255, 255, 0.18);
}

.memo-list span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.memo-list h3 {
  margin-bottom: 8px;
}

.memo-list p {
  color: var(--muted);
}

.section--ink .memo-list p,
.section--sage .memo-list p {
  color: rgba(255, 255, 255, 0.72);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 16, 14, 0.12);
  border: 1px solid rgba(17, 16, 14, 0.12);
}

.signal-item {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--paper);
}

.signal-item p {
  color: var(--muted);
}

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

.project-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(17, 16, 14, 0.1);
  box-shadow: 0 18px 46px rgba(17, 16, 14, 0.06);
  min-height: 100%;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.project-card:hover {
  border-color: rgba(167, 137, 82, 0.42);
  box-shadow: 0 24px 58px rgba(17, 16, 14, 0.1);
  transform: translateY(-2px);
}

.project-card__reserved {
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 16, 14, 0.94), rgba(44, 41, 36, 0.96)),
    var(--warm-paper);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  text-decoration: none;
}

.project-card__reserved img {
  width: min(190px, 70%);
  height: 112px;
  object-fit: contain;
  opacity: 0.74;
  transition: transform 420ms ease, opacity 420ms ease;
}

.project-card:hover .project-card__reserved img {
  opacity: 0.92;
  transform: scale(1.02);
}

.project-card__reserved span {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-card__body {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(22px, 3vw, 30px);
}

.project-card__body h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.35rem);
}

.project-card__body p {
  color: var(--muted);
}

.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.project-card__meta span {
  padding: 6px 8px;
  background: rgba(238, 231, 218, 0.82);
  border: 1px solid rgba(17, 16, 14, 0.08);
  color: var(--graphite);
  font-size: 0.74rem;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.quiet-note {
  max-width: 760px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.text-link::after {
  content: " ->";
  color: var(--gold);
}

.review-callout {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin-top: 34px;
  padding: clamp(22px, 4vw, 32px);
  background: rgba(238, 231, 218, 0.72);
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: 0.94rem;
}

.review-callout p:last-child {
  color: var(--graphite);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: var(--paper);
  border-bottom: 1px solid rgba(17, 16, 14, 0.1);
  color: var(--muted);
  font-size: 0.86rem;
}

.back-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.detail-hero {
  min-height: calc(70svh - var(--header-height));
}

.detail-hero__content {
  display: grid;
  gap: 18px;
}

.detail-hero__content .lede {
  margin-top: 0;
}

.detail-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin: 16px 0 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.detail-hero__meta div {
  display: grid;
  gap: 5px;
  padding: 16px;
  background: rgba(17, 16, 14, 0.54);
  min-height: 92px;
}

.detail-hero__meta dt {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-hero__meta dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.detail-hero__actions {
  margin-top: 4px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

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

.detail-main {
  display: grid;
  gap: 20px;
}

.review-panel,
.review-card,
.pending-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 16, 14, 0.1);
  box-shadow: 0 18px 44px rgba(17, 16, 14, 0.05);
}

.review-panel {
  border-top: 3px solid var(--gold);
}

.review-panel h3,
.review-card h2 {
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
}

.review-panel p,
.review-card p {
  color: var(--muted);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.detail-gallery__item {
  display: grid;
  gap: 10px;
  margin: 0;
  min-width: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(17, 16, 14, 0.08);
}

.detail-gallery__item--large {
  grid-column: 1 / -1;
}

.detail-gallery__item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--stone);
}

.detail-gallery__item figcaption {
  padding: 0 2px 2px;
  color: var(--muted);
  font-size: 0.86rem;
}

.review-list,
.pending-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--graphite);
}

.section--sage .pending-panel {
  background: rgba(255, 255, 255, 0.9);
}

.section--sage .pending-list {
  color: var(--graphite);
}


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

.facts-card {
  display: grid;
  gap: 9px;
  min-height: 178px;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(17, 16, 14, 0.1);
}

.facts-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.facts-card strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-weight: 400;
  line-height: 1.22;
}

.facts-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-section-grid,
.verification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.dossier-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.dossier-panel h2 {
  font-size: clamp(1.65rem, 3vw, 3rem);
}

.dossier-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--graphite);
}

.dossier-list li {
  padding-left: 4px;
}

.section--sage .dossier-panel h2,
.section--sage .dossier-list {
  color: rgba(255, 255, 255, 0.9);
}

.section--sage .dossier-list {
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel {
  display: grid;
  gap: 18px;
  justify-items: start;
  max-width: 860px;
}

.cta-panel p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-panel .button {
  margin-top: 4px;
}

.inline-projects {
  display: grid;
  gap: 0;
  margin-top: clamp(46px, 7vw, 88px);
  border-top: 1px solid rgba(17, 16, 14, 0.16);
}

.inline-project {
  scroll-margin-top: calc(var(--header-height) + 28px);
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(0, 1.35fr) auto;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  padding: clamp(30px, 5vw, 46px) 0;
  border-bottom: 1px solid rgba(17, 16, 14, 0.16);
}

.inline-project__heading {
  display: grid;
  gap: 12px;
}

.inline-project__facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.inline-project__facts div {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
}

.inline-project__facts dt {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.inline-project__facts dd {
  margin: 0;
  color: var(--graphite);
}

.inline-project > .text-link {
  white-space: nowrap;
}


.project-card__image {
  position: relative;
  min-height: 220px;
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
  text-decoration: none;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, opacity 420ms ease;
}

.project-card:hover .project-card__image img {
  opacity: 0.92;
  transform: scale(1.02);
}

.project-card__image span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 8px 10px;
  background: rgba(17, 16, 14, 0.82);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.inline-project--feature {
  grid-template-columns: minmax(300px, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
}

.inline-project__media {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.inline-project__hero-image,
.inline-project__thumb-grid img {
  width: 100%;
  object-fit: cover;
  background: var(--warm-paper);
}

.inline-project__hero-image {
  aspect-ratio: 16 / 10;
}

.inline-project__thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.inline-project__thumb-grid img {
  aspect-ratio: 4 / 3;
}

.inline-project__content {
  display: grid;
  gap: 16px;
  align-content: start;
}

.inline-project__positioning {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  line-height: 1.16;
}

.inline-project__intro {
  color: var(--graphite);
}

.inline-project__highlights {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--graphite);
}

.image-panel {
  min-height: 480px;
  background-image:
    linear-gradient(180deg, rgba(17, 16, 14, 0.02), rgba(17, 16, 14, 0.12)),
    var(--panel-image);
  background-position: center;
  background-size: cover;
}

.contact-panel {
  display: grid;
  gap: 22px;
  max-width: 680px;
  padding: clamp(28px, 5vw, 44px);
  background: var(--white);
  border: 1px solid rgba(17, 16, 14, 0.1);
}

.contact-panel p {
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 4px 0 0;
}

.detail-list div {
  display: grid;
  gap: 3px;
}

.detail-list dt {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  color: var(--graphite);
  overflow-wrap: anywhere;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.social-links a {
  text-decoration: none;
}

.social-links span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-list {
  display: grid;
  gap: 16px;
  max-width: 860px;
  color: var(--graphite);
}

.legal-list strong {
  color: var(--ink);
}

.legal-list li {
  padding-left: 6px;
}

.site-footer {
  padding: 34px clamp(20px, 4vw, 56px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.76);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.3fr) minmax(180px, 0.8fr);
  justify-content: space-between;
  gap: 28px;
  font-size: 0.84rem;
}

.footer__inner a {
  text-decoration: none;
}

.footer-logo {
  width: 172px;
  height: 86px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand,
.footer-contact,
.footer-social {
  display: grid;
  gap: 8px;
  align-content: start;
}

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

.footer-contact span,
.footer-contact a,
.footer-social a {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px clamp(20px, 4vw, 56px) 24px;
    background: rgba(247, 244, 238, 0.98);
    border-bottom: 1px solid rgba(17, 16, 14, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(17, 16, 14, 0.08);
  }

  .split,
  .project-grid,
  .project-grid--wide,
  .signal-grid,
  .inline-project,
  .inline-project--feature,
  .detail-layout,
  .detail-layout--balanced,
  .detail-section-grid,
  .verification-grid,
  .facts-grid,
  .detail-hero__meta {
    grid-template-columns: 1fr;
  }

  .inline-project {
    gap: 18px;
  }

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

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

  .detail-hero {
    min-height: calc(60svh - var(--header-height));
  }
}

@media (max-width: 620px) {
  .brand-line {
    display: none;
  }

  .brand-logo {
    width: 116px;
    height: 44px;
  }

  .site-header {
    gap: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .project-card__reserved,
  .project-card__image,
  .project-card__image img {
    min-height: 190px;
  }

  .project-card__reserved img {
    height: 92px;
  }

  .inline-project__thumb-grid {
    gap: 8px;
  }

  .breadcrumb {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .detail-gallery__item {
    padding: 8px;
  }

  .detail-hero__meta div {
    padding: 14px;
    min-height: auto;
  }

  .detail-hero__actions .button {
    width: 100%;
  }

  .footer-logo {
    width: 150px;
    height: 74px;
  }

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

  .hero--short {
    min-height: 52svh;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .memo-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .inline-project__facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-panel {
    padding: 24px;
  }
}



.portfolio-cta {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-top: 36px;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 16, 14, 0.1);
  border-top: 3px solid var(--gold);
}

.portfolio-cta h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
}

.portfolio-cta p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
}

.portfolio-cta .actions {
  margin-top: 8px;
}

/* Public commercial polish v0.5 */
.small-print,
.detail-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-note {
  max-width: 820px;
  margin-top: 28px;
}

.documentation-grid {
  display: grid;
  gap: 12px;
}

.document-card {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid rgba(17, 16, 14, 0.1);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 220ms ease, transform 220ms ease;
}

.document-card:hover {
  border-color: rgba(167, 137, 82, 0.42);
  transform: translateY(-1px);
}

.document-card span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.document-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.22;
}

.amenities-list {
  columns: 1;
}

.footer-note {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

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

.footer-contact__row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.footer-contact__row span:first-child {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-contact__row span:last-child,
.footer-contact__row a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-social {
  gap: 10px;
}

@media (max-width: 920px) {
  .footer-contact__row {
    grid-template-columns: 104px minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .document-card {
    padding: 16px;
  }

  .footer-contact__row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
