:root {
  --ink: #24313a;
  --ink-deep: #1a252b;
  --ink-soft: #56636a;
  --cream: #f3f0eb;
  --paper: #fbfaf7;
  --clay: #b9693b;
  --clay-dark: #99542f;
  --sage: #d9ded4;
  --line: #d9d3ca;
  --white: #ffffff;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
  --max: 1240px;
  --gutter: clamp(1.1rem, 4vw, 4.5rem);
  --shadow: 0 18px 45px rgba(26, 37, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

button,
a.button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  z-index: 20;
  left: 1rem;
  top: -5rem;
  padding: 0.75rem 1rem;
  background: var(--clay);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem var(--gutter);
  background: var(--ink-deep);
  color: rgba(243, 240, 235, 0.7);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--ink);
  color: var(--cream);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(13rem, 1fr) auto auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3.5rem);
  width: min(100%, var(--max));
  min-height: 5.9rem;
  margin: 0 auto;
  padding: 1rem var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  color: var(--cream);
  text-decoration: none;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
}

.brand-name {
  display: grid;
  gap: 0.12rem;
  font-family: var(--display);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-name span:last-child {
  color: rgba(243, 240, 235, 0.62);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.8rem);
}

.main-nav a {
  position: relative;
  padding: 0.55rem 0;
  color: rgba(243, 240, 235, 0.76);
  font-family: var(--display);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.22rem;
  left: 0;
  height: 2px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--cream);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta,
.button-primary {
  background: var(--clay);
  color: var(--white);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--clay-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(243, 240, 235, 0.45);
  color: var(--cream);
}

.button-secondary:hover {
  border-color: var(--cream);
  background: rgba(243, 240, 235, 0.1);
  transform: translateY(-2px);
}

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

.button-light:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.button-quiet {
  border-color: var(--line);
  color: var(--ink);
}

.button-quiet:hover {
  border-color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(243, 240, 235, 0.35);
  background: transparent;
  color: var(--cream);
  padding: 0.75rem 0.85rem;
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-toggle-icon {
  display: grid;
  gap: 4px;
}

.nav-toggle-icon span {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: currentColor;
}

.concept-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.55rem var(--gutter);
  background: var(--clay);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.concept-bar span {
  opacity: 0.7;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(243, 240, 235, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(243, 240, 235, 0.055) 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 84%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(26rem, 0.95fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 6.5rem);
  width: min(100%, var(--max));
  min-height: 42rem;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) var(--gutter) clamp(3.5rem, 6vw, 5.75rem);
}

.hero-copy {
  align-self: center;
  max-width: 40rem;
}

.eyebrow,
.kicker {
  margin: 0 0 1.2rem;
  color: var(--clay);
  font-family: var(--display);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sage);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.1rem, 6.4vw, 6.5rem);
  line-height: 0.92;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 0.96;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.6rem, 2.8vw, 2.55rem);
  line-height: 0.98;
}

h4 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: rgba(243, 240, 235, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 35rem;
  margin-top: 3.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(243, 240, 235, 0.24);
}

.hero-fact {
  display: grid;
  gap: 0.35rem;
}

.hero-fact strong {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-fact span {
  color: rgba(243, 240, 235, 0.56);
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  align-self: center;
  min-height: 31rem;
  border: 1px solid rgba(243, 240, 235, 0.3);
  background: rgba(243, 240, 235, 0.06);
  box-shadow: 1.2rem 1.2rem 0 rgba(185, 105, 59, 0.85);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 1;
  background: var(--clay);
  content: "";
}

.hero-visual::before {
  top: -1px;
  left: 2rem;
  width: 4rem;
  height: 3px;
}

.hero-visual::after {
  right: 2rem;
  bottom: -1px;
  width: 7rem;
  height: 3px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 31rem;
  object-fit: cover;
}

.visual-index,
.visual-caption,
.visual-note {
  position: absolute;
  z-index: 2;
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.visual-index {
  top: 1.25rem;
  left: 1.35rem;
  color: var(--clay);
  font-size: 1rem;
}

.visual-caption {
  top: 1.45rem;
  right: 1.3rem;
  color: var(--cream);
}

.visual-note {
  bottom: 1.25rem;
  left: 1.35rem;
  color: var(--cream);
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) var(--gutter);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.5fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 6rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-heading .kicker {
  padding-top: 0.45rem;
}

.section-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.section-heading p:last-child {
  max-width: 35rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
}

.intro-section h2 {
  max-width: 10ch;
}

.intro-copy {
  max-width: 39rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.intro-note {
  position: relative;
  padding: 2rem;
  border-top: 4px solid var(--clay);
  background: var(--white);
  box-shadow: var(--shadow);
}

.intro-note::after {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 3rem;
  height: 3rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  content: "";
}

.intro-note p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.intro-note strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.services-section {
  padding-top: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 40rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card-dark {
  background: var(--ink);
  color: var(--cream);
}

.service-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 1.6rem 0;
}

.service-card-head .card-number {
  margin: 0;
  color: var(--clay);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-card h3 {
  max-width: 9ch;
  margin: 0;
  text-align: right;
}

.service-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 17.5rem;
  margin-top: 1.5rem;
  overflow: hidden;
}

.service-art img {
  width: 100%;
  height: 100%;
  min-height: 17.5rem;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem 1.6rem 1.8rem;
}

.service-card-body p {
  max-width: 33rem;
  margin-bottom: 1.6rem;
  color: var(--ink-soft);
}

.service-card-dark .service-card-body p {
  color: rgba(243, 240, 235, 0.72);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
}

.service-link span {
  color: var(--clay);
  font-size: 1rem;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
}

.story-section h2 {
  max-width: 9ch;
}

.story-body {
  padding-top: 0.5rem;
}

.story-body > p {
  max-width: 40rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 1.07rem;
}

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

.story-list div {
  padding: 1.2rem 1.25rem 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.story-list div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.story-list div:nth-child(even) {
  padding-left: 1.25rem;
}

.story-list dt {
  margin-bottom: 0.35rem;
  color: var(--clay);
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.story-list dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.capabilities-section {
  width: 100%;
  max-width: none;
  background: var(--ink);
  color: var(--cream);
}

.capabilities-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.capabilities-section .section-heading {
  margin-bottom: 3rem;
}

.capabilities-section .kicker {
  color: var(--sage);
}

.capabilities-section .section-heading p:last-child {
  color: rgba(243, 240, 235, 0.68);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(243, 240, 235, 0.25);
  border-left: 1px solid rgba(243, 240, 235, 0.25);
}

.capability {
  min-height: 7rem;
  padding: 1.3rem 1.2rem;
  border-right: 1px solid rgba(243, 240, 235, 0.25);
  border-bottom: 1px solid rgba(243, 240, 235, 0.25);
}

.capability span {
  display: block;
  margin-bottom: 1rem;
  color: var(--clay);
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.capability strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.025em;
  line-height: 1.15;
  text-transform: uppercase;
}

.capability-note {
  max-width: 40rem;
  margin: 2rem 0 0;
  color: rgba(243, 240, 235, 0.68);
  font-size: 0.92rem;
}

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

.prompt-section .section {
  padding-top: clamp(4.5rem, 8vw, 8rem);
  padding-bottom: clamp(4.5rem, 8vw, 8rem);
}

.prompt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink-soft);
  border: 1px solid var(--ink-soft);
}

.prompt-card {
  min-height: 15rem;
  padding: 1.5rem;
  background: var(--sage);
}

.prompt-card .card-number {
  margin-bottom: 3rem;
  color: var(--clay-dark);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.prompt-card h3 {
  max-width: 12ch;
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.prompt-card p {
  max-width: 20rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.contact-band {
  width: 100%;
  background: var(--clay);
  color: var(--white);
}

.contact-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.82fr);
  gap: clamp(2rem, 7vw, 8rem);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) var(--gutter);
}

.contact-band .kicker {
  color: rgba(255, 255, 255, 0.75);
}

.contact-band h2 {
  max-width: 8ch;
  margin-bottom: 1.1rem;
}

.contact-band-copy {
  max-width: 35rem;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.contact-detail-list {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-detail-list li {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-detail-list span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-detail-list a,
.contact-detail-list strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-decoration: none;
}

.contact-detail-list a:hover {
  text-decoration: underline;
}

.site-footer {
  background: var(--ink-deep);
  color: var(--cream);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 2rem var(--gutter);
}

.footer-inner p {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(243, 240, 235, 0.56);
  font-size: 0.78rem;
}

.footer-brand {
  margin-bottom: 0.6rem;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-side {
  align-self: end;
  color: var(--clay);
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
}

.page-hero {
  background: var(--ink);
  color: var(--cream);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.75fr);
  gap: 3rem;
  align-items: end;
  width: min(100%, var(--max));
  min-height: 24rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6.5rem) var(--gutter);
}

.page-hero h1 {
  max-width: 8ch;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  text-transform: uppercase;
}

.page-hero-summary {
  max-width: 29rem;
  margin-bottom: 0;
  color: rgba(243, 240, 235, 0.75);
  font-size: 1.05rem;
}

.page-hero .eyebrow {
  color: var(--sage);
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
}

.detail-art {
  position: relative;
  background: var(--ink);
  box-shadow: 1rem 1rem 0 var(--clay);
}

.detail-art img {
  width: 100%;
}

.detail-art-label {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-copy h2 {
  max-width: 10ch;
}

.detail-copy > p {
  max-width: 39rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.source-note {
  margin-top: 1.4rem;
  padding-left: 1rem;
  border-left: 3px solid var(--clay);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

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

.trade-section .section {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

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

.detail-trade-grid span {
  min-height: 4.8rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.questions-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
}

.questions-section h2 {
  max-width: 10ch;
}

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

.question-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.question-list span {
  color: var(--clay);
  font-family: var(--display);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.question-list strong {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.25;
}

.contact-page-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: start;
}

.contact-page-section h2 {
  max-width: 8ch;
}

.contact-page-intro {
  max-width: 29rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.contact-page-details {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-page-details li {
  display: grid;
  gap: 0.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-page-details span,
.field-label {
  color: var(--clay-dark);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-page-details a,
.contact-page-details strong {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.2;
  text-decoration: none;
}

.contact-page-details a:hover {
  color: var(--clay-dark);
  text-decoration: underline;
}

.concept-form-wrap {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
  box-shadow: var(--shadow);
}

.concept-form-wrap h3 {
  margin-bottom: 0.45rem;
  font-size: 2rem;
}

.concept-form-lead {
  margin-bottom: 1.7rem;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.concept-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #bbb9b3;
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 0.85rem 0.9rem;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--clay);
  outline: 3px solid rgba(185, 105, 59, 0.22);
  outline-offset: 0;
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.79rem;
  line-height: 1.45;
}

.concept-form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--clay-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.form-actions .button {
  border: 0;
}

.contact-source-note {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.contact-source-note a {
  color: var(--ink);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--ink);
    border-top: 1px solid rgba(243, 240, 235, 0.16);
    box-shadow: 0 20px 24px rgba(26, 37, 43, 0.2);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(243, 240, 235, 0.14);
  }

  .main-nav a::after {
    bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
    gap: 2rem;
  }

  .capability-grid,
  .detail-trade-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topline {
    justify-content: center;
    text-align: center;
  }

  .topline span:last-child {
    display: none;
  }

  .hero-shell,
  .intro-section,
  .story-section,
  .contact-band-inner,
  .page-hero-inner,
  .detail-section,
  .questions-section,
  .contact-page-section {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-visual {
    min-height: 23rem;
    margin: 1rem 0 0 0.75rem;
  }

  .hero-visual img {
    min-height: 23rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .section-heading h2 {
    max-width: 11ch;
  }

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

  .service-card {
    min-height: 0;
  }

  .service-art,
  .service-art img {
    min-height: 15rem;
  }

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

  .story-list div:nth-child(odd) {
    border-right: 0;
  }

  .story-list div:nth-child(even) {
    padding-left: 0;
  }

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

  .contact-band-inner {
    gap: 2.5rem;
  }

  .page-hero-inner {
    min-height: auto;
    gap: 1.5rem;
  }

  .page-hero h1 {
    max-width: 7ch;
  }

  .detail-art {
    margin-right: 0.75rem;
  }

  .footer-inner {
    display: grid;
    gap: 1.5rem;
  }

  .footer-side {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 0.82rem;
  }

  .brand-name span:last-child {
    font-size: 0.56rem;
  }

  .nav-toggle {
    padding: 0.7rem;
  }

  .nav-toggle > span:first-child {
    display: none;
  }

  h1 {
    font-size: clamp(2.85rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.5rem);
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-fact {
    grid-template-columns: 8rem 1fr;
    align-items: baseline;
  }

  .hero-fact span {
    text-align: right;
  }

  .capability-grid,
  .detail-trade-grid {
    grid-template-columns: 1fr;
  }

  .capability,
  .detail-trade-grid span {
    min-height: 0;
  }

  .contact-detail-list a,
  .contact-detail-list strong {
    font-size: 1.18rem;
  }

  .button-row,
  .button-row .button,
  .form-actions .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
