:root {
  --bg: #f5f0e9;
  --bg-deep: #ece3d7;
  --surface: rgba(255, 251, 246, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.84);
  --surface-dark: #101a2d;
  --surface-dark-2: #17243d;
  --text: #111827;
  --text-soft: rgba(17, 24, 39, 0.72);
  --text-faint: rgba(17, 24, 39, 0.56);
  --line: rgba(17, 24, 39, 0.1);
  --line-strong: rgba(17, 24, 39, 0.16);
  --line-inverse: rgba(255, 247, 237, 0.18);
  --accent: #c45c34;
  --accent-deep: #8f4124;
  --navy: #122548;
  --gold: #b5925b;
  --success: #0f766e;
  --danger: #b42318;
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow-soft: 0 14px 34px rgba(16, 26, 45, 0.06);
  --shadow-strong: 0 26px 76px rgba(16, 26, 45, 0.12);
  --max: 1160px;
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font: 400 16px/1.65 var(--font-sans);
  background:
    radial-gradient(820px 520px at 14% 4%, rgba(196, 92, 52, 0.08), transparent 58%),
    radial-gradient(780px 520px at 88% 0%, rgba(18, 37, 72, 0.1), transparent 58%),
    linear-gradient(180deg, #f8f3ed 0%, #f5f0e9 44%, #efe7dc 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(620px 420px at 22% 18%, rgba(196, 92, 52, 0.08), transparent 62%),
    radial-gradient(680px 420px at 82% 16%, rgba(18, 37, 72, 0.08), transparent 62%),
    radial-gradient(780px 440px at 50% 88%, rgba(181, 146, 91, 0.08), transparent 64%);
  filter: blur(20px);
  animation: aura 18s ease-in-out infinite alternate;
  pointer-events: none;
}

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

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

figure {
  margin: 0;
}

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

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-wrap: pretty;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(248, 243, 237, 0.82);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(16, 26, 45, 0.16);
}

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

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(18, 37, 72, 0.08);
  color: var(--navy);
  transform: translateY(-1px);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff8f0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 32px rgba(196, 92, 52, 0.24);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    background-color 0.18s ease;
}

.header-cta:hover,
.button:hover,
.header-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(196, 92, 52, 0.28);
  filter: brightness(1.02);
}

.button.secondary {
  background: rgba(18, 37, 72, 0.08);
  color: var(--navy);
  border-color: rgba(18, 37, 72, 0.14);
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(18, 37, 72, 0.12);
  box-shadow: none;
}

.button.subtle {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.button.subtle:hover,
.button.subtle:focus-visible {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

:focus-visible {
  outline: 3px solid rgba(196, 92, 52, 0.24);
  outline-offset: 3px;
}

.hero {
  padding: 68px 0 44px;
}

.page-hero {
  padding: 60px 0 24px;
}

.page-hero + .section {
  padding-top: 28px;
}

.page-intro {
  display: grid;
  gap: 12px;
  max-width: 62rem;
}

.hero-grid,
.about-hero,
.contact-layout,
.profile-band,
.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 40px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
}

.eyebrow {
  margin-bottom: 16px;
  color: rgba(18, 37, 72, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title,
.page-title {
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 0.98;
}

.hero-title {
  max-width: 9.8ch;
}

.page-title {
  max-width: 24ch;
}

.lede {
  margin-top: 20px;
  max-width: 46rem;
  color: var(--text-soft);
  font-size: 17px;
}

.hero .lede,
.hero-points {
  max-width: 36rem;
}

.page-intro .lede,
.page-intro .contact-copy {
  margin-top: 0;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  list-style: none;
}

.hero-points li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 14px;
}

.hero-points strong,
.kpi-value,
.story-index,
.step-number {
  color: var(--navy);
}

.hero-visual,
.portrait-frame,
.panel,
.panel-dark,
.quote-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-visual {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 3 / 2;
  justify-self: end;
  align-self: start;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-strong);
}

.portrait-frame {
  width: min(100%, 520px);
  justify-self: end;
  align-self: start;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-strong);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 32, 0) 48%, rgba(10, 18, 32, 0.42) 100%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.portrait-frame img {
  width: 100%;
  height: auto;
  transition: transform 1.2s ease;
}

.hero-visual:hover img,
.portrait-frame:hover img {
  transform: scale(1.03);
}

.hero-caption,
.portrait-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: rgba(255, 248, 240, 0.9);
  font-size: 13px;
  line-height: 1.5;
}

.portrait-caption {
  display: grid;
  gap: 4px;
}

.portrait-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.portrait-meta {
  color: rgba(255, 248, 240, 0.74);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding: 60px 0;
}

.section-tight {
  padding-top: 34px;
  padding-bottom: 34px;
}

.section-intro {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 1080px;
}

.subsection-intro {
  margin-top: 40px;
}

.section-title {
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.05;
  max-width: 24ch;
}

.section-copy {
  color: var(--text-soft);
  font-size: 16px;
  max-width: 48rem;
}

.capability-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.proof-grid,
.fit-grid,
.insight-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.proof-card,
.fit-card,
.insight-card,
.article-cta {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
}

.proof-card,
.fit-card,
.insight-card {
  display: grid;
  gap: 10px;
}

.proof-card h3,
.fit-card h3,
.insight-card h3,
.article-cta h3 {
  font-size: 24px;
  line-height: 1.08;
}

.proof-card p,
.fit-card p,
.insight-card p,
.article-cta p {
  color: var(--text-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.text-link::after {
  content: "→";
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 34px;
  align-items: center;
}

.media-layout.reverse {
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
}

.media-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.media-copy .section-title {
  max-width: 18ch;
}

.media-copy .section-copy {
  max-width: 40rem;
}

.media-frame,
.media-card,
.graphic-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-strong);
}

.media-frame {
  aspect-ratio: 3 / 2;
  min-height: 0;
  background: rgba(255, 255, 255, 0.42);
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.04) 30%, rgba(10, 18, 32, 0.46) 100%);
  pointer-events: none;
}

.media-frame img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.media-frame:hover img,
.media-card:hover img {
  transform: scale(1.04);
}

.media-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  color: rgba(255, 248, 240, 0.9);
  font-size: 13px;
  line-height: 1.5;
}

.media-card {
  display: block;
  padding: 0;
  min-height: 260px;
  background: rgba(255, 255, 255, 0.42);
}

.media-card img {
  min-height: 260px;
}

.graphic-panel {
  min-height: 360px;
  padding: 28px;
  background:
    radial-gradient(480px 260px at 18% 18%, rgba(196, 92, 52, 0.24), transparent 56%),
    radial-gradient(420px 240px at 86% 16%, rgba(181, 146, 91, 0.2), transparent 54%),
    linear-gradient(145deg, rgba(18, 37, 72, 0.96), rgba(16, 26, 45, 0.98));
  color: rgba(255, 248, 240, 0.9);
}

.graphic-panel::before,
.graphic-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 240, 0.12);
  pointer-events: none;
}

.graphic-panel::before {
  inset: 16% 12% auto auto;
  width: 220px;
  height: 220px;
  animation: orbitPulse 9s ease-in-out infinite alternate;
}

.graphic-panel::after {
  inset: auto auto 14% 10%;
  width: 280px;
  height: 280px;
  animation: orbitPulse 11s ease-in-out infinite alternate-reverse;
}

.graphic-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.graphic-node {
  display: grid;
  gap: 8px;
  max-width: 18rem;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.graphic-node:nth-child(2) {
  justify-self: end;
}

.graphic-node:nth-child(3) {
  margin-top: 22px;
}

.graphic-label {
  color: rgba(255, 248, 240, 0.64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.graphic-node strong {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.article-shell {
  display: grid;
  gap: 24px;
}

.article-hero,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.article-hero {
  grid-template-columns: minmax(0, 1.14fr) minmax(240px, 0.62fr);
}

.article-intro {
  max-width: 50rem;
}

.article-intro .page-title {
  max-width: 20ch;
}

.article-body {
  display: grid;
  gap: 28px;
  max-width: none;
}

.article-section {
  display: grid;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}

.article-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-body h2 {
  font-size: 28px;
  line-height: 1.08;
}

.article-body p {
  max-width: 46rem;
  color: var(--text-soft);
  font-size: 17px;
}

.article-summary,
.article-cta {
  align-self: start;
  display: grid;
  gap: 12px;
}

.article-summary {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
}

.article-summary .compact-list {
  gap: 10px;
}

.article-summary .compact-list li {
  padding-top: 12px;
}

.capability {
  padding: 18px 0 0;
  border-top: 1px solid var(--line-strong);
}

.capability h3,
.principle h3,
.service-panel h3,
.step-item h3,
.detail-card h3,
.story-copy h3 {
  font-size: 22px;
  line-height: 1.08;
}

.capability p,
.principle p,
.service-panel p,
.detail-card p,
.step-item p,
.story-copy p,
.footer-copy,
.compact-list,
.contact-copy {
  color: var(--text-soft);
}

.story-list {
  display: grid;
}

.story-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(220px, 280px);
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.story-row:last-child {
  border-bottom: 1px solid var(--line);
}

.story-row:hover {
  transform: translateX(4px);
  border-color: rgba(18, 37, 72, 0.2);
}

.story-index {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1;
}

.story-copy {
  display: grid;
  gap: 10px;
}

.story-note {
  color: var(--text-faint);
  font-size: 14px;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
  justify-content: flex-start;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(18, 37, 72, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: rgba(18, 37, 72, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dark-panel {
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(520px 300px at 12% 16%, rgba(196, 92, 52, 0.16), transparent 60%),
    linear-gradient(145deg, var(--surface-dark) 0%, var(--surface-dark-2) 100%);
  color: rgba(255, 248, 240, 0.92);
  box-shadow: var(--shadow-strong);
}

.dark-panel .eyebrow {
  color: rgba(255, 248, 240, 0.68);
}

.dark-panel .section-copy,
.dark-panel .step-item p,
.dark-panel .compact-list {
  color: rgba(255, 248, 240, 0.74);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.step-item {
  padding-top: 18px;
  border-top: 1px solid var(--line-inverse);
}

.step-number {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel,
.quote-panel,
.service-panel,
.detail-card,
.info-card,
.form-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
}

.panel,
.quote-panel,
.service-panel,
.detail-card,
.info-card,
.form-card {
  padding: 24px;
  border-radius: var(--radius);
}

.quote-panel {
  display: grid;
  gap: 16px;
}

.quote-panel blockquote {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.26;
  letter-spacing: -0.02em;
}

.quote-panel cite {
  color: var(--text-soft);
  font-size: 14px;
  font-style: normal;
}

.about-note-band .profile-band,
.about-presence .delivery-layout {
  align-items: start;
}

.about-note-band .profile-band {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.about-page .about-hero {
  align-items: start;
}

.about-note-band .quote-panel,
.about-note-band .panel {
  padding: 24px;
}

.about-note-band .quote-panel blockquote {
  max-width: none;
  font-size: 21px;
  line-height: 1.32;
}

.about-note-band .panel .section-title,
.about-presence .panel .section-title {
  max-width: 22ch;
}

.about-note-band .panel .section-copy,
.about-presence .panel .check-list {
  max-width: none;
}

.about-note-band {
  padding-top: 20px;
}

.about-presence {
  padding-top: 40px;
}

.detail-stack,
.info-stack {
  display: grid;
  gap: 14px;
}

.compact-list {
  display: grid;
  gap: 8px;
  list-style: none;
}

.compact-list li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

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

.about-principles .section-intro {
  margin-bottom: 18px;
}

.about-principles .principle-grid {
  gap: 20px 26px;
}

.about-principles .principle {
  padding-top: 18px;
}

.about-principles .principle p {
  max-width: none;
  font-size: 15px;
}

.service-grid > .service-panel:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.principle,
.service-panel {
  display: grid;
  gap: 10px;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.service-panel {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 251, 246, 0.66));
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(16, 26, 45, 0.12);
}

.service-list,
.check-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  list-style: none;
}

.about-fit-list {
  margin-top: 18px;
}

.service-list li,
.check-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.service-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
}

.article-body .check-list {
  gap: 12px;
  margin-top: 2px;
}

.article-body .check-list li {
  padding-left: 20px;
  font-size: 17px;
  line-height: 1.7;
}

.article-body .check-list li::before {
  top: 10px;
}

.section-tight-top {
  padding-top: 0;
}

.engagement-list {
  margin-top: 20px;
}

.visually-hidden-field {
  display: none;
}

.stateline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.kpi-pill {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(18, 37, 72, 0.06);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-copy {
  margin-top: 14px;
  font-size: 17px;
  max-width: 46rem;
}

.contact-layout {
  align-items: start;
}

.contact-layout .form-card {
  padding: 28px;
}

.contact-layout .detail-card {
  padding: 22px;
}

.contact-layout .detail-card h3 {
  font-size: 20px;
}

.contact-layout .info-stack {
  gap: 12px;
}

.contact-layout .compact-list li {
  font-size: 15px;
}

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

.field,
.form-actions {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(17, 24, 39, 0.46);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(196, 92, 52, 0.6);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(196, 92, 52, 0.12);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-note {
  color: var(--text-faint);
  font-size: 14px;
}

.status-message {
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
}

.status-message.success {
  border: 1px solid rgba(15, 118, 110, 0.2);
  background: rgba(15, 118, 110, 0.08);
  color: #115e59;
}

.status-message.error {
  border: 1px solid rgba(180, 35, 24, 0.18);
  background: rgba(180, 35, 24, 0.08);
  color: #7a271a;
}

.status-message[hidden] {
  display: none !important;
}

.button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.cta-band {
  padding: 0 0 72px;
}

.cta-band-inner {
  display: grid;
  gap: 20px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(520px 240px at 14% 18%, rgba(196, 92, 52, 0.22), transparent 56%),
    linear-gradient(145deg, rgba(18, 37, 72, 0.98) 0%, rgba(16, 26, 45, 0.96) 100%);
  color: rgba(255, 248, 240, 0.94);
  box-shadow: var(--shadow-strong);
}

.cta-band-inner p {
  max-width: 56ch;
  color: rgba(255, 248, 240, 0.74);
}

.site-footer {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.74), rgba(247, 241, 234, 0.94));
}

.footer-inner {
  display: grid;
  width: min(680px, 100%);
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 0 auto;
  padding: 24px 0 30px;
  align-items: start;
}

.footer-copy {
  max-width: 52ch;
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-soft);
}

.site-footer .brand img {
  width: 40px;
  height: 40px;
}

.site-footer .brand-name {
  font-size: 18px;
}

.site-footer .brand-subtitle {
  letter-spacing: 0.16em;
}

.muted {
  color: var(--text-faint);
}

@keyframes aura {
  0% {
    transform: translate(-1.5%, -1%) scale(1.02);
  }

  50% {
    transform: translate(1%, 0.8%) scale(1.05);
  }

  100% {
    transform: translate(0.6%, -0.8%) scale(1.03);
  }
}

@keyframes orbitPulse {
  0% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 0.78;
  }

  100% {
    transform: translate3d(8px, -10px, 0) scale(1.03);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-hero,
  .contact-layout,
  .profile-band,
  .delivery-layout,
  .article-hero,
  .article-layout,
  .media-layout,
  .media-layout.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .capability-rail,
  .proof-grid,
  .fit-grid,
  .insight-grid,
  .process-grid,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    width: min(680px, 100%);
    grid-template-columns: 1fr;
  }
  .story-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .story-tags {
    grid-column: 2;
  }

  .hero-visual {
    max-width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  html {
    scroll-behavior: auto;
  }

  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .header-cta {
    width: 100%;
  }

  .hero,
  .page-hero,
  .section {
    padding: 54px 0 36px;
  }

  .hero-title,
  .page-title,
  .section-title {
    font-size: clamp(36px, 11vw, 46px);
  }

  .lede,
  .section-copy,
  .contact-copy {
    font-size: 16px;
  }

  .capability-rail,
  .principle-grid,
  .service-grid,
  .proof-grid,
  .fit-grid,
  .insight-grid,
  .process-grid,
  .footer-inner,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout .form-card {
    padding: 22px;
  }

  .story-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-tags {
    grid-column: auto;
  }

  .action-row,
  .button,
  .button.secondary,
  .button.subtle {
    width: 100%;
  }

  .dark-panel,
  .cta-band-inner,
  .article-summary,
  .panel,
  .quote-panel,
  .service-panel,
  .detail-card,
  .info-card,
  .form-card {
    padding: 20px;
  }

  .hero-visual,
  .portrait-frame,
  .media-frame,
  .graphic-panel,
  .media-card {
    width: 100%;
  }

  .media-frame {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .graphic-panel {
    min-height: 300px;
    padding: 22px;
  }

  .graphic-node {
    max-width: none;
  }

  .quote-panel blockquote {
    font-size: 22px;
  }

  .hero-caption,
  .portrait-caption,
  .media-caption {
    left: 16px;
    right: 16px;
    bottom: 14px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body::before {
    animation: none !important;
  }
}
