:root {
  --ink: #111314;
  --ink-2: #232323;
  --paper: #f4efe5;
  --paper-2: #ebe2d4;
  --white: #fffaf1;
  --muted: #6b6257;
  --line: rgba(17, 19, 20, 0.14);
  --line-light: rgba(255, 250, 241, 0.18);
  --brass: #b89255;
  --olive: #536a57;
  --oxblood: #623a32;
  --blueprint: #25364a;
  --radius: 8px;
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 34px;
  color: var(--white);
  transition:
    background 280ms var(--ease),
    border-color 280ms var(--ease),
    color 280ms var(--ease),
    height 280ms var(--ease);
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(17, 19, 20, 0.9);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
}

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

.brand-symbol {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.42);
  background: rgba(255, 250, 241, 0.08);
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-size: 0.94rem;
  font-weight: 700;
}

.brand-mark small {
  margin-top: 1px;
  color: rgba(255, 250, 241, 0.64);
  font-size: 0.74rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 0.86rem;
  color: rgba(255, 250, 241, 0.78);
}

.desktop-nav a {
  transition: color 180ms var(--ease);
}

.desktop-nav a:hover {
  color: var(--white);
}

.header-action {
  justify-self: end;
  border: 1px solid rgba(255, 250, 241, 0.34);
  padding: 11px 16px;
  color: var(--white);
  font-size: 0.84rem;
  transition:
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease);
}

.header-action:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 241, 0.32);
  background: rgba(17, 19, 20, 0.32);
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition:
    transform 180ms var(--ease),
    opacity 180ms var(--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;
  z-index: 24;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 96px 34px 34px;
  background: rgba(17, 19, 20, 0.96);
  color: var(--white);
  transform: translateY(-100%);
  transition: transform 260ms var(--ease);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu a {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media,
.hero-scrim,
.image-statement-media {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image:
    linear-gradient(90deg, rgba(17, 19, 20, 0.94) 0%, rgba(17, 19, 20, 0.72) 38%, rgba(17, 19, 20, 0.18) 78%),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=2200&q=80");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: heroSettle 1300ms var(--ease) forwards;
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(17, 19, 20, 0.1) 0%, rgba(17, 19, 20, 0.36) 74%, rgba(17, 19, 20, 0.9) 100%),
    linear-gradient(0deg, rgba(184, 146, 85, 0.1), rgba(184, 146, 85, 0));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 150px 34px 128px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: rgba(255, 250, 241, 0.68);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 5.7rem;
}

h2 {
  max-width: 850px;
  font-size: 3.3rem;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-weight: 800;
  font-size: 0.9rem;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brass);
  border-color: var(--brass);
  color: #17130d;
}

.button-primary:hover {
  background: #cfab6c;
  border-color: #cfab6c;
}

.button-ghost {
  border-color: rgba(255, 250, 241, 0.34);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 250, 241, 0.08);
}

.hero-caption {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 32px;
  display: flex;
  gap: 14px;
  max-width: 560px;
  color: rgba(255, 250, 241, 0.64);
  font-size: 0.78rem;
}

.hero-caption span {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 250, 241, 0.28);
}

.intro-band,
.sector-section,
.portfolio-section,
.model-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 108px 34px;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 72px;
  align-items: start;
}

.large-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1.55;
}

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

.principles article {
  min-height: 250px;
  padding: 30px;
  background: var(--paper);
}

.principles span,
.portfolio-index {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.principles h3 {
  margin-top: 64px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.44rem;
  font-weight: 500;
}

.principles p,
.sector-ledger p,
.portfolio-row p,
.model-steps p,
.contact-form p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 42px;
  align-items: end;
  margin-bottom: 54px;
}

.sector-ledger {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.sector-ledger article {
  display: grid;
  grid-template-columns: 0.42fr 0.84fr;
  gap: 34px;
  min-height: 220px;
  padding: 34px 28px;
  border-bottom: 1px solid var(--line);
}

.sector-ledger article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.sector-ledger span {
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sector-ledger h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.52rem;
  font-weight: 500;
}

.sector-ledger p {
  grid-column: 2;
  margin: 0;
}

.image-statement {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.image-statement-media {
  background-image:
    linear-gradient(90deg, rgba(17, 19, 20, 0.9) 0%, rgba(17, 19, 20, 0.68) 48%, rgba(17, 19, 20, 0.2) 100%),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=80");
  background-position: center;
  background-size: cover;
}

.image-statement-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px 34px;
}

.image-statement-content h2 {
  max-width: 930px;
  font-size: 3.1rem;
}

.image-statement-content p:last-child {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.74);
  font-size: 1.08rem;
}

.portfolio-heading {
  align-items: start;
}

.portfolio-heading > div:first-child {
  flex: 1 1 560px;
}

.filter-bar {
  flex: 0 0 440px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 440px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease);
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

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

.portfolio-row {
  display: grid;
  grid-template-columns: 54px 0.78fr 1.1fr 150px;
  gap: 26px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 180ms var(--ease),
    transform 180ms var(--ease),
    background 180ms var(--ease);
}

.portfolio-row.is-hidden {
  display: none;
}

.portfolio-row:hover {
  background: rgba(184, 146, 85, 0.08);
}

.portfolio-sector {
  margin: 0 0 7px;
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-row h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.portfolio-row p {
  margin: 0;
}

.portfolio-row > span:last-child {
  justify-self: end;
  color: var(--oxblood);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.model-section {
  padding-top: 72px;
}

.model-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.model-steps article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.model-steps span {
  color: var(--blueprint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.model-steps p {
  margin: 0;
}

.record-section {
  padding: 88px max(34px, calc((100vw - var(--max)) / 2 + 34px)) 0;
}

.record-intro {
  max-width: 880px;
  margin-bottom: 48px;
}

.record-intro h2 {
  max-width: 820px;
}

.record-intro p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.record-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 46px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.record-proof {
  position: sticky;
  top: 104px;
  align-self: start;
}

.record-proof span,
.record-grid article span {
  display: block;
  margin-bottom: 12px;
  color: var(--oxblood);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-proof p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.12;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid var(--line);
}

.record-grid article {
  min-height: 220px;
  padding: 0 0 34px 30px;
  border-bottom: 1px solid var(--line);
}

.record-grid article:nth-last-child(-n + 2) {
  padding-top: 34px;
  border-bottom: 0;
}

.record-grid article:nth-child(odd) {
  padding-right: 30px;
}

.record-grid article:nth-child(even) {
  border-left: 1px solid var(--line);
}

.record-grid h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.record-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  gap: 72px;
  padding: 104px max(34px, calc((100vw - var(--max)) / 2 + 34px));
}

.contact-section h2 {
  max-width: 740px;
}

.contact-form {
  align-self: end;
  border-left: 1px solid var(--line-light);
  padding-left: 34px;
}

.contact-form p {
  margin: 0 0 28px;
  color: rgba(255, 250, 241, 0.72);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-form label span {
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 0;
  background: rgba(255, 250, 241, 0.08);
  color: var(--white);
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease);
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 250, 241, 0.7) 50%),
    linear-gradient(135deg, rgba(255, 250, 241, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.contact-form option {
  background: var(--ink);
  color: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brass);
  background: rgba(255, 250, 241, 0.12);
}

.consent-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  margin: 4px 0 22px !important;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--brass);
}

.consent-row span {
  text-transform: none !important;
  font-weight: 600 !important;
  line-height: 1.45;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .button {
  width: 100%;
  cursor: pointer;
}

.contact-form .button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0 !important;
  color: rgba(255, 250, 241, 0.74) !important;
  font-size: 0.88rem;
}

.form-status.is-success {
  color: #bfe6c6 !important;
}

.form-status.is-error {
  color: #f2c2b8 !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
}

.standalone-page {
  padding-top: 68px;
}

.page-hero {
  min-height: 70svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 128px max(34px, calc((100vw - var(--max)) / 2 + 34px)) 86px;
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.25rem, 8vw, 7.2rem);
}

.page-hero p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.thesis-hero {
  background-image:
    linear-gradient(90deg, rgba(17, 19, 20, 0.92), rgba(17, 19, 20, 0.42)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=80");
}

.sectors-hero {
  background-image:
    linear-gradient(90deg, rgba(17, 19, 20, 0.9), rgba(17, 19, 20, 0.48)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=2200&q=80");
}

.portfolio-hero {
  background-image:
    linear-gradient(90deg, rgba(17, 19, 20, 0.92), rgba(17, 19, 20, 0.5)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=80");
}

.record-hero {
  background-image:
    linear-gradient(90deg, rgba(17, 19, 20, 0.92), rgba(17, 19, 20, 0.46)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2200&q=80");
}

.memo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  padding: 96px max(34px, calc((100vw - var(--max)) / 2 + 34px));
  border-bottom: 1px solid var(--line);
}

.memo-lead h2 {
  max-width: 620px;
}

.memo-copy {
  display: grid;
  gap: 24px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

.memo-copy p {
  margin: 0;
}

.standalone-section {
  padding: 96px max(34px, calc((100vw - var(--max)) / 2 + 34px));
}

.standalone-principles {
  padding: 0 max(34px, calc((100vw - var(--max)) / 2 + 34px)) 96px;
}

.standalone-section .record-panel {
  padding-top: 0;
}

.page-cta {
  padding: 92px max(34px, calc((100vw - var(--max)) / 2 + 34px));
}

.page-cta h2 {
  max-width: 850px;
  margin-bottom: 28px;
}

.brief-page {
  padding-top: 68px;
}

.brief-hero {
  min-height: 72svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 128px max(34px, calc((100vw - var(--max)) / 2 + 34px)) 86px;
  background:
    linear-gradient(90deg, rgba(17, 19, 20, 0.92), rgba(17, 19, 20, 0.58)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=80");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.brief-hero h1 {
  max-width: 860px;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.brief-hero p:last-child {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 max(34px, calc((100vw - var(--max)) / 2 + 34px));
  border-bottom: 1px solid var(--line);
}

.brief-grid article {
  min-height: 260px;
  padding: 42px 30px 42px 0;
  border-right: 1px solid var(--line);
}

.brief-grid article + article {
  padding-left: 30px;
}

.brief-grid article:last-child {
  border-right: 0;
}

.brief-grid span,
.brief-ledger dt {
  display: block;
  margin-bottom: 14px;
  color: var(--oxblood);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-grid p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  line-height: 1.22;
}

.brief-ledger {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  padding: 96px max(34px, calc((100vw - var(--max)) / 2 + 34px));
}

.brief-ledger dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.brief-ledger dl div {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.brief-ledger dd {
  margin: 0;
  color: var(--muted);
}

.brief-close {
  padding: 92px max(34px, calc((100vw - var(--max)) / 2 + 34px));
}

.brief-close h2 {
  max-width: 850px;
  margin-bottom: 28px;
}

.not-found {
  min-height: 100svh;
  display: grid;
  align-content: space-between;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2 + 34px)) 82px;
}

.not-found > div {
  max-width: 880px;
}

.not-found h1 {
  max-width: 860px;
}

.not-found p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: 1.12rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

@keyframes heroSettle {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-action {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }

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

  h1 {
    font-size: 4.5rem;
  }

  h2,
  .image-statement-content h2 {
    font-size: 2.65rem;
  }

  .section-grid,
  .contact-section,
  .memo-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .sector-ledger article:nth-child(odd) {
    border-right: 0;
  }

  .portfolio-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-bar {
    justify-content: flex-start;
  }

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

  .portfolio-row > p,
  .portfolio-row > span:last-child {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .record-panel {
    grid-template-columns: 1fr;
  }

  .record-proof {
    position: static;
  }

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

  .brief-grid article,
  .brief-grid article + article {
    min-height: auto;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-form {
    border-left: 0;
    border-top: 1px solid var(--line-light);
    padding: 30px 0 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 66px;
  }

  .brand-mark strong {
    font-size: 0.86rem;
  }

  .brand-symbol {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(17, 19, 20, 0.86) 0%, rgba(17, 19, 20, 0.76) 55%, rgba(17, 19, 20, 0.92) 100%),
      url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1400&q=80");
  }

  .hero-inner {
    padding: 126px 22px 120px;
  }

  .page-hero {
    min-height: 74svh;
    padding: 118px 22px 72px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2,
  .image-statement-content h2 {
    font-size: 2.15rem;
  }

  .hero-copy,
  .large-copy p {
    font-size: 1.02rem;
  }

  .hero-caption {
    right: 22px;
    left: 22px;
    bottom: 20px;
    flex-direction: column;
    gap: 7px;
  }

  .hero-caption span {
    padding-left: 10px;
  }

  .intro-band,
  .sector-section,
  .portfolio-section,
  .model-section,
  .record-section {
    padding: 76px 22px;
  }

  .memo-section,
  .standalone-section,
  .page-cta {
    padding: 76px 22px;
  }

  .standalone-principles {
    padding: 0 22px 76px;
  }

  .principles {
    margin-top: 48px;
  }

  .principles article {
    min-height: auto;
    padding: 26px;
  }

  .principles h3 {
    margin-top: 36px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .sector-ledger article {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .sector-ledger p {
    grid-column: 1;
  }

  .image-statement {
    min-height: 560px;
  }

  .image-statement-content {
    padding: 76px 22px;
  }

  .portfolio-row {
    grid-template-columns: 34px 1fr;
    gap: 18px;
    padding: 24px 0;
  }

  .model-steps article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .record-intro {
    margin-bottom: 34px;
  }

  .record-panel {
    gap: 32px;
    padding: 34px 0;
  }

  .record-proof p {
    font-size: 1.55rem;
  }

  .record-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .record-grid article,
  .record-grid article:nth-child(odd),
  .record-grid article:nth-child(even),
  .record-grid article:nth-last-child(-n + 2) {
    min-height: auto;
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .record-grid article:last-child {
    border-bottom: 0;
  }

  .contact-section {
    padding: 76px 22px;
  }

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

  .site-footer {
    flex-direction: column;
    padding: 24px 22px;
  }

  .brief-hero {
    min-height: 74svh;
    padding: 118px 22px 72px;
  }

  .brief-grid,
  .brief-ledger,
  .brief-close {
    padding-right: 22px;
    padding-left: 22px;
  }

  .brief-ledger {
    gap: 36px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .brief-ledger dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .not-found {
    padding: 24px 22px 68px;
  }
}

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