:root {
  --ink: #171713;
  --ink-soft: #2a2923;
  --cream: #f3eee4;
  --cream-deep: #e5ddcf;
  --paper: #fbf8f1;
  --rust: #a3292f;
  --ember: #d45a25;
  --sage: #6f7468;
  --line: rgba(23, 23, 19, 0.16);
  --max: 1460px;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

address {
  font-style: normal;
}

button,
summary {
  font: inherit;
}

::selection {
  background: var(--ember);
  color: white;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  background: rgba(17, 17, 14, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100% - 48px, var(--max));
  height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  width: 182px;
  transition: transform 260ms ease;
}

.brand img {
  width: 100%;
  height: auto;
}

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

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 52px);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.desktop-nav a::after,
.header-cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: #e47d56;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.header-cta {
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.mobile-nav {
  display: none;
}

.section-shell {
  width: min(100% - 64px, var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--rust);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e47d56;
}

.hero {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 760px;
  padding: clamp(72px, 7vw, 120px) clamp(42px, 4vw, 76px) 58px max(48px, calc((100vw - 1600px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  color: white;
  background:
    linear-gradient(110deg, transparent 0 74%, rgba(255, 255, 255, 0.025) 74% 76%, transparent 76%),
    radial-gradient(circle at 20% 20%, rgba(212, 90, 37, 0.08), transparent 26%),
    var(--ink);
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -92px;
  bottom: 12%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.hero h1 {
  width: min(100%, 760px);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 6.1vw, 7.35rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.hero h1 span,
.hero h1 em {
  display: block;
  white-space: nowrap;
  animation: hero-word-in 760ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero h1 span:nth-child(2) {
  animation-delay: 100ms;
}

.hero h1 em {
  color: #dc784d;
  font-weight: 400;
  animation-delay: 200ms;
}

.hero-lead {
  max-width: 560px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.65;
}

.button-row {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.button {
  min-height: 54px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

.button-light:hover {
  background: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.05em;
}

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

.text-link:hover span {
  transform: translate(2px, -2px);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.8);
}

.hero-facts {
  margin: 64px 0 0;
  padding: 24px 0 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.hero-facts li:not(:last-child)::after {
  content: "·";
  margin-left: 28px;
  color: var(--ember);
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #d7c5ad;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.36), transparent 38%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 48%);
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  animation: hero-image-in 1400ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-inset {
  position: absolute;
  z-index: 2;
  left: clamp(26px, 3vw, 54px);
  bottom: clamp(34px, 4vw, 68px);
  width: clamp(190px, 28%, 300px);
  padding: 10px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  transform: rotate(-2.5deg);
  animation: hero-inset-in 980ms 340ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-inset img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-inset p {
  margin: 10px 6px 3px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.1;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  top: 34px;
  right: 34px;
  width: 138px;
  height: 138px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: white;
  text-align: center;
  text-transform: uppercase;
}

.hero-stamp span:first-child {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 0.9;
}

.hero-stamp span:nth-child(2) {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.hero-stamp span:last-child {
  margin-top: 4px;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.image-caption {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.craft-ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  background: var(--rust);
}

.craft-ticker-track {
  width: max-content;
  padding-block: 15px;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: ticker-move 28s linear infinite;
  will-change: transform;
}

.craft-ticker span {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.craft-ticker i {
  color: #f3b08f;
  font-size: 0.72rem;
  font-style: normal;
}

.section-kicker {
  padding-top: 8px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: var(--rust);
}

.section-kicker > span {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.section-kicker p {
  margin: 0;
  padding-top: 4px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker-light,
.section-kicker-light p {
  color: #e47d56;
}

.manifesto {
  padding-block: clamp(110px, 13vw, 200px);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 6vw;
}

.manifesto-content h2,
.services-heading h2,
.craft-copy h2,
.process-content > h2,
.about-copy h2,
.team-heading h2,
.contact-copy h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.manifesto-content h2 {
  max-width: 1040px;
  font-size: clamp(3.4rem, 6.3vw, 7.2rem);
}

.manifesto-content h2 em {
  color: var(--rust);
  font-weight: 400;
}

.manifesto-copy {
  max-width: 870px;
  margin-top: 68px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  color: #4c4a42;
}

.manifesto-copy p {
  margin: 0;
}

.manifesto-copy p:first-child {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
}

.services-section {
  padding-block: clamp(96px, 10vw, 160px);
  color: white;
  background:
    linear-gradient(125deg, rgba(212, 90, 37, 0.05), transparent 28%),
    var(--ink);
}

.services-heading {
  margin-bottom: 74px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 6vw;
  align-items: end;
}

.services-heading h2 {
  max-width: 920px;
  font-size: clamp(3.4rem, 5.3vw, 6.3rem);
}

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

.service-card {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms ease, box-shadow 420ms ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.24);
  transform: translateY(-10px);
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
  grid-column: span 7;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 5;
}

.service-image {
  position: relative;
  height: clamp(380px, 35vw, 560px);
  overflow: hidden;
  background: #38372f;
}

.service-card:nth-child(2) .service-image,
.service-card:nth-child(3) .service-image {
  height: clamp(380px, 32vw, 510px);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 50%);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.035);
}

.service-card:nth-child(2) img,
.service-card:nth-child(4) img {
  object-position: center 42%;
}

.service-image span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 16px;
  color: white;
  font-family: var(--font-display);
  font-size: 2.4rem;
}

.service-copy {
  padding: 30px 30px 34px;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 1fr;
  gap: 28px;
}

.service-card:nth-child(2) .service-copy,
.service-card:nth-child(3) .service-copy {
  grid-template-columns: 1fr;
}

.service-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.7vw, 3.1rem);
  font-weight: 400;
  line-height: 1;
}

.service-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.craft-feature {
  min-height: 800px;
  display: grid;
  grid-template-columns: 47% 1fr;
  background: var(--cream);
}

.craft-image {
  min-height: 620px;
  overflow: hidden;
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.craft-feature:hover .craft-image img {
  transform: scale(1.025);
}

.craft-copy {
  padding: clamp(80px, 9vw, 150px) max(48px, calc((100vw - var(--max)) / 2 + 32px)) clamp(80px, 9vw, 150px) clamp(56px, 7vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.craft-copy h2 {
  max-width: 700px;
  font-size: clamp(3.2rem, 5vw, 6rem);
}

.craft-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 40px 0 0;
  color: #545148;
  font-size: 1.04rem;
}

.material-list {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.material-list span {
  padding: 17px 10px 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms ease, padding-left 240ms ease;
}

.material-list span:hover {
  padding-left: 10px;
  color: var(--rust);
}

.process {
  padding-block: clamp(110px, 12vw, 190px);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 6vw;
}

.process-content > h2 {
  max-width: 890px;
  font-size: clamp(3.3rem, 5.7vw, 6.8rem);
}

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

.process-steps li {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 260ms ease, background 260ms ease;
}

.process-steps li:hover {
  padding-left: 18px;
  background: rgba(163, 41, 47, 0.04);
}

.process-steps li > span {
  color: var(--rust);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.process-steps h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.1vw, 2.3rem);
  font-weight: 400;
}

.process-steps p {
  max-width: 600px;
  margin: 8px 0 0;
  color: #646057;
}

.about-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink-soft);
  color: white;
}

.about-image {
  min-height: 620px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-section:hover .about-image img {
  transform: scale(1.025);
}

.about-copy {
  padding: clamp(80px, 9vw, 150px) max(48px, calc((100vw - var(--max)) / 2 + 32px)) clamp(80px, 9vw, 150px) clamp(56px, 7vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy h2 {
  max-width: 680px;
  font-size: clamp(3.2rem, 5vw, 6rem);
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.history-list {
  margin: 54px 0 0;
}

.history-list div {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.history-list div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.history-list dt {
  color: #e47d56;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.history-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.team-section {
  padding-block: clamp(110px, 12vw, 190px);
}

.team-heading {
  margin-bottom: 74px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 6vw;
  align-items: end;
}

.team-heading h2 {
  max-width: 920px;
  font-size: clamp(3.4rem, 5.5vw, 6.5rem);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.team-card {
  min-width: 0;
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card-1 {
  grid-column: span 6;
}

.team-card-2,
.team-card-3 {
  grid-column: span 3;
}

.team-image {
  overflow: hidden;
  background: var(--cream-deep);
}

.team-card-1 .team-image {
  aspect-ratio: 4 / 3;
}

.team-card-2 .team-image,
.team-card-3 .team-image {
  aspect-ratio: 3 / 4;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.team-card:hover .team-image img {
  transform: scale(1.025);
}

.team-card-2 .team-image img {
  object-position: center top;
}

.team-card-3 .team-image img {
  object-position: 55% center;
}

.team-role {
  margin: 24px 0 8px;
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.team-card > p:last-child {
  max-width: 560px;
  margin: 16px 0 0;
  color: #666258;
  font-size: 0.88rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 42% 1fr;
  background: var(--rust);
  color: white;
}

.contact-image {
  min-height: 760px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-section:hover .contact-image img {
  transform: scale(1.025);
}

.contact-copy {
  padding: clamp(80px, 9vw, 150px) max(48px, calc((100vw - var(--max)) / 2 + 32px)) clamp(80px, 9vw, 150px) clamp(56px, 8vw, 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.contact-copy h2 {
  max-width: 760px;
  font-size: clamp(3.5rem, 5.9vw, 7rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.contact-actions a {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.contact-actions span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-actions strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 2.3rem);
  font-weight: 400;
  overflow-wrap: anywhere;
}

.address-row {
  margin-top: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.address-row address {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 78px max(32px, calc((100vw - var(--max)) / 2 + 32px)) 28px;
  background: #11110e;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 0.8fr;
  gap: 54px;
}

.footer-logo {
  width: 160px;
  height: auto;
  padding: 8px 12px;
  background: var(--cream);
}

.footer-grid > div:first-child p {
  max-width: 420px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.footer-label {
  margin: 0 0 18px;
  color: #e47d56;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid address,
.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-grid a + a {
  margin-top: 8px;
}

.footer-grid a:hover {
  color: white;
}

.footer-grid > div:nth-child(3) a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  margin-top: 72px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-page {
  min-height: 80vh;
}

.legal-hero {
  min-height: 480px;
  padding: 90px max(32px, calc((100vw - var(--max)) / 2 + 32px));
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  align-items: end;
  gap: 70px;
  background:
    linear-gradient(115deg, rgba(212, 90, 37, 0.09), transparent 30%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  font-size: clamp(4.6rem, 9vw, 10rem);
}

.legal-hero > p {
  margin: 0 0 12px;
  color: #5d594f;
  font-size: 1.05rem;
}

.legal-layout {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding-block: 100px 150px;
  display: grid;
  grid-template-columns: 240px minmax(0, 780px);
  justify-content: space-between;
  gap: 90px;
}

.legal-layout aside {
  position: sticky;
  top: 132px;
  align-self: start;
  display: flex;
  flex-direction: column;
}

.legal-aside-label {
  margin: 0 0 20px;
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-layout aside a {
  padding: 9px 0;
  color: #676257;
  font-size: 0.86rem;
}

.legal-layout aside a:hover {
  color: var(--ink);
}

.legal-content section {
  padding: 0 0 72px;
  scroll-margin-top: 128px;
}

.legal-content section + section {
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.legal-number {
  margin: 0 0 18px;
  color: var(--rust);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.legal-content h2 {
  margin: 0 0 30px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.legal-content p,
.legal-content address,
.legal-content li {
  color: #514e46;
}

.legal-content address strong,
.legal-content p strong {
  color: var(--ink);
}

.legal-content a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-definition-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.legal-definition-list div {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-definition-list dt {
  color: #777166;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-definition-list dd {
  margin: 0;
}

.legal-updated {
  margin-top: 20px;
  color: #888177 !important;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes hero-word-in {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-inset-in {
  from {
    opacity: 0;
    transform: translateY(36px) rotate(-6deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-2.5deg);
  }
}

@keyframes ticker-move {
  to {
    transform: translateX(-50%);
  }
}

@keyframes section-reveal {
  from {
    opacity: 0.35;
    translate: 0 42px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@supports (animation-timeline: view()) {
  .manifesto-content,
  .service-card,
  .craft-copy,
  .process-content,
  .about-copy,
  .team-card,
  .contact-copy {
    animation: section-reveal linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 34%;
  }
}

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

  .desktop-nav {
    gap: 24px;
  }

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

  .hero-copy {
    padding-left: 42px;
    padding-right: 42px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 8vw, 5.8rem);
  }

  .manifesto,
  .services-heading,
  .process,
  .team-heading {
    grid-template-columns: 170px 1fr;
  }

  .team-card-1,
  .team-card-2,
  .team-card-3 {
    grid-column: span 4;
  }

  .team-card-1 .team-image,
  .team-card-2 .team-image,
  .team-card-3 .team-image {
    aspect-ratio: 3 / 4;
  }

  .team-card-1 .team-image img {
    object-position: 58% center;
  }

  .contact-actions a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .header-inner {
    width: min(100% - 32px, var(--max));
    height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 154px;
  }

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

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-nav summary span {
    width: 20px;
    height: 1px;
    background: white;
  }

  .mobile-nav nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    padding: 28px 24px 34px;
    display: flex;
    flex-direction: column;
    color: white;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  }

  .mobile-nav nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--font-display);
    font-size: 1.65rem;
  }

  .section-shell {
    width: min(100% - 40px, var(--max));
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 660px;
    padding: 80px 28px 56px;
  }

  .hero h1 {
    font-size: clamp(4rem, 15.5vw, 6.6rem);
  }

  .hero-visual {
    height: 68vw;
    min-height: 480px;
  }

  .hero-stamp {
    width: 116px;
    height: 116px;
  }

  .hero-inset {
    width: clamp(170px, 30%, 250px);
  }

  .manifesto,
  .services-heading,
  .process,
  .team-heading {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .manifesto-copy {
    margin-top: 50px;
  }

  .service-card:nth-child(n) {
    grid-column: span 6;
  }

  .service-card:nth-child(n) .service-image {
    height: 480px;
  }

  .service-card:nth-child(n) .service-copy {
    grid-template-columns: 1fr;
  }

  .craft-feature,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .craft-image,
  .about-image,
  .contact-image {
    min-height: 0;
    height: 72vw;
  }

  .craft-copy,
  .about-copy,
  .contact-copy {
    padding: 96px 28px;
  }

  .team-card-1 {
    grid-column: span 12;
  }

  .team-card-2,
  .team-card-3 {
    grid-column: span 6;
  }

  .team-card-1 .team-image {
    aspect-ratio: 4 / 3;
  }

  .legal-hero {
    min-height: 400px;
    padding: 80px 28px 60px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .legal-layout {
    width: min(100% - 40px, 780px);
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .legal-layout aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
  }

  .legal-aside-label {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 82px;
  }

  .hero-copy {
    min-height: 640px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15.5vw, 5rem);
  }

  .hero-lead {
    margin-top: 32px;
  }

  .hero-facts {
    margin-top: 44px;
    gap: 10px 20px;
  }

  .hero-facts li:not(:last-child)::after {
    display: none;
  }

  .hero-visual {
    height: 86vw;
    min-height: 420px;
  }

  .hero-inset {
    left: 20px;
    bottom: 28px;
    width: 155px;
  }

  .image-caption {
    right: 18px;
    bottom: 16px;
    max-width: 150px;
    text-align: right;
  }

  .manifesto,
  .process,
  .team-section {
    padding-block: 92px;
  }

  .manifesto-content h2,
  .services-heading h2,
  .craft-copy h2,
  .process-content > h2,
  .about-copy h2,
  .team-heading h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .manifesto-copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-section {
    padding-block: 90px;
  }

  .services-heading {
    margin-bottom: 48px;
  }

  .service-grid {
    gap: 20px;
  }

  .service-card:nth-child(n) {
    grid-column: span 12;
  }

  .service-card:nth-child(n) .service-image {
    height: 115vw;
    max-height: 520px;
  }

  .service-card:nth-child(1) .service-image,
  .service-card:nth-child(3) .service-image {
    height: 82vw;
  }

  .service-copy {
    padding: 25px 24px 30px;
  }

  .material-list {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .craft-image,
  .about-image,
  .contact-image {
    height: 88vw;
  }

  .team-card-1,
  .team-card-2,
  .team-card-3 {
    grid-column: span 12;
  }

  .team-card-1 .team-image,
  .team-card-2 .team-image,
  .team-card-3 .team-image {
    aspect-ratio: 4 / 3;
  }

  .team-card-2 .team-image {
    aspect-ratio: 3 / 4;
  }

  .address-row,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions a {
    padding-block: 22px;
  }

  .site-footer {
    padding: 64px 24px 28px;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    margin-top: 54px;
  }

  .legal-hero h1 {
    font-size: clamp(4.1rem, 20vw, 6rem);
  }

  .legal-layout {
    padding-block: 72px 100px;
  }

  .legal-layout aside {
    grid-template-columns: 1fr;
  }

  .legal-definition-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
