:root {
  --paper: #f3ede6;
  --paper-deep: #e7ddd1;
  --paper-soft: #f7f3ee;
  --ink: #12110f;
  --ink-soft: #302a25;
  --ink-faint: #6e675f;
  --dark: #050404;
  --dark-2: #0d0b09;
  --line: rgba(31, 24, 18, 0.12);
  --line-dark: rgba(255, 255, 255, 0.1);
  --orange: #f47d18;
  --orange-soft: rgba(244, 125, 24, 0.22);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  --serif: "Iowan Old Style", "Baskerville", "Baskerville Old Face", "Palatino Linotype", "Georgia", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1520px, calc(100vw - 2 * clamp(1.1rem, 3vw, 2.5rem)));
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.55), transparent 24%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.42), transparent 18%),
    linear-gradient(180deg, #f6f1eb 0%, var(--paper) 14%, var(--paper) 100%);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--orange);
  color: #111;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.panel {
  position: relative;
}

.panel--paper {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.02)),
    var(--paper);
}

.panel--dark {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.09), transparent 42%),
    linear-gradient(180deg, #060504 0%, #080705 100%);
  color: #f7f1ea;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.1vw, 4.1rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-title--light {
  color: #f6f0e9;
}

.section-title__accent {
  color: var(--orange);
  font-style: italic;
}

.nowrap {
  white-space: nowrap;
}

.section-marker {
  display: block;
  width: 1.25rem;
  height: 1px;
  margin: 1rem 0 1.4rem;
  background: var(--orange);
}

.section-marker--dark {
  background: var(--orange);
  opacity: 0.8;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--orange);
  font-family: var(--sans);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-wrap: pretty;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
}

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

.hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 153, 51, 0.06), transparent 25%),
    linear-gradient(180deg, #050404 0%, #060504 100%);
  color: #fff;
  overflow: hidden;
}

.hero__shell {
  padding-top: clamp(1.25rem, 2vw, 2rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero__topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
  width: clamp(8.5rem, 11vw, 11.8rem);
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
  padding-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-nav a {
  position: relative;
  padding-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.hero-nav a:hover::after,
.hero-nav a:focus-visible::after,
.hero-nav a.is-active::after {
  transform: scaleX(1);
}

.hero-nav a.is-active {
  color: #fff;
}

.hero-nav__cta {
  border-bottom: 1px solid var(--orange);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 0.8rem;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #f6f1ea;
}

.menu-button span:last-child {
  position: relative;
  width: 1.05rem;
  height: 0.72rem;
}

.menu-button span:last-child::before,
.menu-button span:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
}

.menu-button span:last-child::before {
  top: 0.1rem;
}

.menu-button span:last-child::after {
  bottom: 0.1rem;
}

.menu-panel {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  background: rgba(7, 6, 5, 0.88);
  backdrop-filter: blur(18px);
}

.menu-panel[hidden] {
  display: none !important;
}

.menu-panel:not([hidden]) {
  display: block;
}

.menu-panel a {
  display: block;
  padding: 0.9rem 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-panel a:first-child {
  border-top: 0;
}

.menu-panel a.is-active {
  color: var(--orange);
}

.hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  min-height: 0;
}

.hero__copy {
  padding: clamp(6rem, 14vh, 11rem) 0 clamp(2rem, 4vh, 3rem);
  max-width: 38rem;
}

.hero__title {
  margin: 0;
  display: grid;
  gap: 0.04em;
  font-family: var(--serif);
  font-size: clamp(2.95rem, 5.35vw, 5.15rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero__title-accent {
  color: var(--orange);
  font-style: italic;
}

.hero__scroll {
  margin-top: 3rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__scroll span:last-child {
  color: var(--orange);
  font-size: 1.7rem;
  line-height: 1;
}

.hero__media {
  margin: 0;
  min-height: 78svh;
  align-self: stretch;
  display: flex;
  align-items: stretch;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  will-change: transform;
}

.hero__intro {
  margin: 1.5rem 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.about {
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  display: grid;
  grid-template-columns: minmax(16rem, 0.82fr) minmax(36rem, 1.48fr) minmax(17rem, 0.82fr);
  gap: clamp(1.75rem, 3.8vw, 4rem);
  align-items: center;
}

.about__copy {
  max-width: 20rem;
  justify-self: start;
  align-self: start;
  padding-top: 0.75rem;
}

.about__copy p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.about__copy em {
  font-style: italic;
  color: var(--orange);
}

.about__visual {
  position: relative;
  width: min(100%, 46rem);
  min-height: 540px;
  overflow: hidden;
  border-radius: 1.35rem;
  box-shadow: var(--shadow);
  justify-self: center;
  align-self: center;
}

.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.12);
  transform-origin: center center;
}

.about__insight {
  max-width: 34rem;
  justify-self: end;
  align-self: start;
  margin-top: 0.35rem;
}

.comparison {
  display: grid;
  gap: 0.5rem;
  margin: 1.65rem 0 1.8rem;
}

.comparison__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2rem minmax(0, 1fr);
  gap: 1.15rem;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(31, 24, 18, 0.12);
}

.comparison__row:first-child {
  border-top: 0;
}

.comparison__label {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.comparison__label--right {
  text-align: right;
}

.comparison__divider {
  display: block;
  width: 100%;
  height: 1px;
  position: relative;
  background: linear-gradient(90deg, transparent, rgba(97, 85, 73, 0.25), transparent);
}

.comparison__divider::before,
.comparison__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.42rem;
  height: 1px;
  background: rgba(97, 85, 73, 0.33);
  transform: translateY(-50%);
}

.comparison__divider::before {
  left: 0;
  opacity: 0.7;
}

.comparison__divider::after {
  right: 0;
}

.about__note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 18ch;
  text-wrap: pretty;
}

.split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.82fr);
  gap: clamp(0rem, 1.2vw, 1.5rem);
  align-items: stretch;
  min-height: clamp(33rem, 55vw, 42rem);
}

.split__media {
  margin: 0;
  min-height: 100%;
  background: #000;
  overflow: hidden;
  border-radius: 0 1.65rem 1.65rem 0;
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  will-change: transform;
}

.split__copy {
  padding: clamp(2.75rem, 5.5vw, 4.75rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 30%);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.split__copy p:not(.eyebrow) {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  max-width: 24ch;
  font-weight: 400;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}

.split__copy-line {
  max-width: 24ch;
}

.split__copy-line--accent {
  color: var(--orange);
  max-width: 10ch;
  margin-top: 0.1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
}

.science-name {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 125, 24, 0.07), transparent 22%),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #060504 0%, #080705 100%);
}

.science-name::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
  pointer-events: none;
}

.science-name__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.55fr);
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: center;
  padding-top: clamp(1.8rem, 2.7vw, 2.6rem);
  padding-bottom: clamp(1.6rem, 2.4vw, 2.2rem);
  min-height: clamp(15rem, 20vw, 18rem);
}

.science-name__copy {
  display: grid;
  gap: 0.65rem;
  max-width: 34rem;
}

.science-name__title {
  max-width: 10ch;
  font-size: clamp(2rem, 2.9vw, 3.5rem);
  line-height: 0.92;
  display: grid;
  gap: 0.02em;
}

.science-name__title span {
  display: block;
}

.science-name__lede,
.science-name__body {
  margin: 0;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.92rem, 0.96vw, 1rem);
  line-height: 1.52;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.science-name__accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 700;
}

.science-name__visual {
  display: grid;
  align-content: center;
  gap: 0.55rem;
}

.science-name__frame {
  aspect-ratio: 2172 / 724;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.4rem;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.science-name__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.science-name__caption {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.science-name__caption p {
  margin: 0;
}

.science-name__caption-line {
  width: 4rem;
  height: 1px;
  background: var(--orange);
  opacity: 0.84;
}

.reflection {
  position: relative;
  overflow: hidden;
  min-height: clamp(40rem, 58vw, 56rem);
  background:
    url("../assets/site-images/deliberate-choices-reflection.png") center center / cover no-repeat,
    #f3ede6;
}

.reflection::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(243, 237, 230, 0.98) 0%, rgba(243, 237, 230, 0.96) 24%, rgba(243, 237, 230, 0.88) 40%, rgba(243, 237, 230, 0.58) 58%, rgba(243, 237, 230, 0.12) 74%, rgba(243, 237, 230, 0) 86%);
  pointer-events: none;
}

.reflection__overlay {
  position: relative;
  z-index: 1;
  width: min(54vw, 44rem);
  min-height: inherit;
  display: flex;
  align-items: center;
}

.reflection__content {
  width: min(100%, 37rem);
  display: grid;
  gap: 1.05rem;
  padding: clamp(4rem, 7vw, 6.25rem) 0 clamp(4rem, 6.5vw, 5.75rem) clamp(5.5rem, 8vw, 8rem);
}

.reflection__eyebrow {
  margin-bottom: 0.2rem;
}

.reflection__title {
  max-width: none;
  width: fit-content;
  display: grid;
  gap: 0.2em;
  line-height: 0.86;
  text-wrap: balance;
}

.reflection__title span {
  display: block;
}

.reflection__title-strong {
  font-size: clamp(2.2rem, 3.65vw, 4.45rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
  white-space: nowrap;
}

.reflection__title-mid {
  font-size: clamp(1.2rem, 1.42vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.04em;
  opacity: 0.62;
  margin-top: 0.06em;
}

.reflection__lede,
.reflection__body {
  margin: 0;
  max-width: 44ch;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.72;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.reflection__body {
  max-width: 43ch;
  margin-top: 0.35rem;
}

.reflection__signature {
  margin: 0.6rem 0 0;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-style: italic;
  line-height: 1.2;
}

.approach {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.approach__shell {
  padding-top: clamp(3.5rem, 6vw, 5.75rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.75rem);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.approach__lead {
  max-width: 30rem;
}

.approach__title {
  max-width: 13.5ch;
  font-size: clamp(2.35rem, 3.9vw, 4.8rem);
  line-height: 0.86;
}

.approach__lede {
  margin: 1.25rem 0 0;
  max-width: 31ch;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.approach__diagram {
  --orbit-radius: clamp(12.25rem, 16vw, 16rem);
  position: relative;
  width: min(100%, 46rem);
  aspect-ratio: 1 / 1;
  justify-self: center;
}

.approach__diagram-ring {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 1px solid rgba(31, 24, 18, 0.1);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.2) 34%, rgba(244, 237, 229, 0) 68%),
    radial-gradient(circle at 50% 50%, rgba(244, 125, 24, 0.05), rgba(244, 125, 24, 0) 65%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.approach__diagram-ring::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px dashed rgba(31, 24, 18, 0.08);
}

.approach__center {
  position: absolute;
  inset: 50%;
  width: min(40%, 14rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 239, 0.95) 48%, rgba(240, 232, 223, 0.88) 100%);
  border: 1px solid rgba(31, 24, 18, 0.08);
  box-shadow: 0 18px 34px rgba(31, 24, 18, 0.08);
  z-index: 2;
}

.approach__center-kicker {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.approach__center-title {
  max-width: 7ch;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.85vw, 1.95rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.step {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(13.5rem, 27%);
  transform:
    translate(-50%, -50%)
    rotate(var(--orbit-angle))
    translate(var(--orbit-radius))
    rotate(calc(var(--orbit-angle) * -1));
  transform-origin: center;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(31, 24, 18, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 28px rgba(31, 24, 18, 0.06);
  z-index: 1;
}

.step::before {
  content: "";
  position: absolute;
  inset: -0.38rem;
  border-radius: inherit;
  border: 1px solid rgba(244, 125, 24, 0.08);
  pointer-events: none;
}

.step__number {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1;
  color: var(--orange);
}

.step__title {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.step__copy {
  display: grid;
  gap: 0.25rem;
}

.step__body {
  margin-top: 0.18rem;
  max-width: none;
  font-size: 0.9rem;
  line-height: 1.42;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.approach__diagram .step:nth-of-type(1) {
  --orbit-angle: -112deg;
  z-index: 6;
}

.approach__diagram .step:nth-of-type(2) {
  --orbit-angle: -34deg;
  z-index: 5;
}

.approach__diagram .step:nth-of-type(3) {
  --orbit-angle: 28deg;
  z-index: 4;
}

.approach__diagram .step:nth-of-type(4) {
  --orbit-angle: 104deg;
  z-index: 3;
}

.approach__diagram .step:nth-of-type(5) {
  --orbit-angle: 176deg;
  z-index: 2;
}

.offerings {
  overflow: hidden;
}

.offerings__shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: clamp(4.75rem, 8.5vw, 7.25rem);
  padding-bottom: clamp(4.75rem, 8.5vw, 7.25rem);
}

.offerings__intro {
  display: grid;
  gap: 1.8rem;
  align-items: start;
  padding: 0 0 clamp(4.25rem, 8vw, 6.5rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.04), transparent 45%);
}

.offerings__intro-copy {
  max-width: 34rem;
}

.offerings__intro-copy .section-title {
  font-size: clamp(2.45rem, 4.05vw, 5rem);
  max-width: 14ch;
  line-height: 0.98;
}

.offerings__lede {
  margin: 0;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.03rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.offerings__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.4rem;
}

.offering-card {
  border-right: 1px solid var(--line-dark);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
  transition: transform 0.55s ease, box-shadow 0.55s ease;
}

.offering-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.offering-card:last-child {
  border-right: 0;
}

.offering-card__media {
  margin: 0;
  height: 18.5rem;
  background: #000;
}

.offering-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.offering-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.5rem 2rem;
}

.offering-card__meta {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1;
}

.offering-card h3 {
  margin: 0;
  color: #f8f4ee;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offering-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.offering-card__accent {
  color: var(--orange) !important;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem !important;
  line-height: 1.58 !important;
}

.offering-card__emphasis {
  color: #fff !important;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

.story-structure {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0 clamp(4.5rem, 8vw, 7.5rem);
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 125, 24, 0.05), transparent 18%),
    radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.55), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.14)),
    var(--paper);
}

.story-structure::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 17, 15, 0.03), transparent 18%),
    radial-gradient(circle at 50% 34%, rgba(244, 125, 24, 0.04), transparent 12%);
  pointer-events: none;
}

.story-structure__shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(3.25rem, 6vw, 5.5rem);
}

.story-structure__intro {
  max-width: 46rem;
}

.story-structure__intro .section-title {
  font-size: clamp(2.75rem, 4.45vw, 5.4rem);
  max-width: 8.5ch;
  line-height: 0.88;
}

.story-structure__lede {
  margin: 1rem 0 0;
  max-width: 32ch;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.05vw, 1.16rem);
  line-height: 1.72;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.story-structure__streams {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.48fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: start;
}

.story-stream {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding-top: 0.35rem;
}

.story-stream--ramanath {
  justify-self: start;
  max-width: 21rem;
}

.story-stream--srinivasamurthy {
  justify-self: end;
  max-width: 21rem;
  padding-top: 2.75rem;
}

.story-stream__name {
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-stream__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.story-stream__list li {
  color: var(--ink);
  font-size: clamp(1.18rem, 1.8vw, 2rem);
  line-height: 1.14;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.story-stream__list li + li {
  margin-top: 0.5rem;
}

.story-stream--ramanath .story-stream__list {
  font-family: var(--serif);
}

.story-stream--ramanath .story-stream__list li {
  font-style: italic;
}

.story-stream--ramanath .story-stream__list li:nth-child(1) {
  margin-left: 0;
}

.story-stream--ramanath .story-stream__list li:nth-child(2) {
  margin-left: 1.1rem;
}

.story-stream--ramanath .story-stream__list li:nth-child(3) {
  margin-left: 0.35rem;
}

.story-stream--ramanath .story-stream__list li:nth-child(4) {
  margin-left: 1.45rem;
}

.story-stream--ramanath .story-stream__list li:nth-child(5) {
  margin-left: 0.55rem;
}

.story-stream--srinivasamurthy .story-stream__list {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.story-stream--srinivasamurthy .story-stream__list li {
  text-align: right;
}

.story-stream--srinivasamurthy .story-stream__list li:nth-child(1) {
  margin-right: 0;
}

.story-stream--srinivasamurthy .story-stream__list li:nth-child(2) {
  margin-right: 1rem;
}

.story-stream--srinivasamurthy .story-stream__list li:nth-child(3) {
  margin-right: 0.4rem;
}

.story-stream--srinivasamurthy .story-stream__list li:nth-child(4) {
  margin-right: 1.35rem;
}

.story-stream--srinivasamurthy .story-stream__list li:nth-child(5) {
  margin-right: 0.55rem;
}

.story-structure__shared {
  display: grid;
  gap: 1rem;
  justify-items: center;
  align-self: stretch;
  padding-top: 0.95rem;
}

.story-structure__shared-label {
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-structure__shared-rail {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  padding: 1.1rem 0 1.3rem;
  min-height: 0;
}

.story-structure__shared-rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(18, 17, 15, 0.15) 12%, rgba(18, 17, 15, 0.1) 88%, transparent);
  transform: translateX(-50%);
}

.story-structure__shared-word {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.65vw, 2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
  opacity: 1;
}

.story-structure__shared-node {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  opacity: calc(0.35 + var(--story-progress, 0) * 0.65);
  box-shadow: 0 0 0 0.25rem rgba(244, 125, 24, 0.08);
}

.story-structure__shared-node--end {
  margin-top: 0.15rem;
}

.story-structure__profiles {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  margin-top: clamp(0.25rem, 0.75vw, 0.75rem);
}

.partner-profile {
  display: grid;
  gap: 1rem;
  max-width: 30rem;
}

.partner-profile--srinivasamurthy {
  justify-self: end;
  padding-top: clamp(1.5rem, 3.5vw, 3rem);
}

.partner-profile__header h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  max-width: 12ch;
  text-wrap: balance;
}

.partner-profile__body {
  display: grid;
  gap: 0.9rem;
}

.partner-profile__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.68;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.partner-profile__pull {
  color: var(--orange) !important;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.6vw, 1.7rem) !important;
  line-height: 1.28 !important;
  max-width: 18ch;
}

.partner-profile__closing {
  max-width: 30ch;
}

.story-structure__conclusion {
  display: grid;
  gap: 0.85rem;
  max-width: 54rem;
  padding-top: clamp(2rem, 4vw, 3.25rem);
  border-top: 1px solid rgba(31, 24, 18, 0.08);
}

.story-structure__conclusion p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.08vw, 1.15rem);
  line-height: 1.68;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.story-structure__conclusion-accent {
  max-width: 46rem;
}

.story-structure__final {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.8vw, 5.1rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
  text-wrap: balance;
  padding-top: 0.55rem;
}

.story-paths {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(4.5rem, 8vw, 7.5rem);
  background:
    radial-gradient(circle at 15% 12%, rgba(244, 125, 24, 0.06), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(18, 17, 15, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05)),
    var(--paper);
  border-top: 1px solid rgba(18, 17, 15, 0.05);
}

.story-paths::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(18, 17, 15, 0.015) 50%, transparent 100%);
  pointer-events: none;
}

.story-paths__shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.75rem, 5.5vw, 5rem);
}

.story-paths__intro {
  max-width: 42rem;
}

.story-paths__intro .section-title {
  display: grid;
  gap: 0.08em;
  max-width: 12ch;
  font-size: clamp(2.7rem, 4.4vw, 5.3rem);
  line-height: 0.88;
}

.story-paths__intro .section-title span {
  display: block;
}

.story-paths__lede {
  margin: 1rem 0 0;
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.02vw, 1.14rem);
  line-height: 1.76;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.story-paths__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(2.4rem, 0.14fr) minmax(0, 1fr);
  gap: clamp(0.85rem, 2.4vw, 2.3rem);
  align-items: start;
  max-width: 74rem;
  margin-inline: auto;
}

.story-path {
  display: grid;
  gap: 0.8rem;
  max-width: 26rem;
}

.story-path__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.story-path--right {
  justify-self: end;
  padding-top: 0;
}

.story-path__label {
  margin: 0;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-path h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.55rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
  max-width: 10ch;
}

.story-path__lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.1vw, 1.16rem);
  line-height: 1.68;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  max-width: 30ch;
}

.story-path__list {
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  width: 100%;
  max-width: 30ch;
}

.story-path__list li {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.35vw, 1.45rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.story-path--left .story-path__list li {
  text-align: left;
}

.story-path--right .story-path__list li {
  text-align: right;
}

.story-path--right .story-path__lead,
.story-path--right .story-path__list {
  margin-left: auto;
}

.story-path--right .story-path__lead {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.story-path__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.32rem;
  height: 1.32rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.story-path__linkedin-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
}

.story-path__linkedin:hover,
.story-path__linkedin:focus-visible {
  transform: translateY(-1px) scale(1.04);
}

.story-paths__bridge {
  position: relative;
  min-height: clamp(18rem, 34vw, 26rem);
}

.story-paths__bridge-line {
  position: absolute;
  left: 50%;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(18, 17, 15, 0.18), transparent);
  transform: translateX(-50%);
}

.story-paths__bridge-node {
  position: absolute;
  left: 50%;
  top: 18%;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0.25rem rgba(244, 125, 24, 0.08);
  transform: translateX(-50%);
}

.story-paths__bridge-node--end {
  top: auto;
  bottom: 16%;
  opacity: 0.78;
}

.story-paths__result {
  max-width: 62rem;
  display: grid;
  gap: 1.15rem;
  padding-top: clamp(1.15rem, 2.2vw, 1.75rem);
  border-top: 1px solid rgba(31, 24, 18, 0.08);
  text-align: center;
  margin-inline: auto;
}

.story-paths__result-line {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.72;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  max-width: 42rem;
  margin-inline: auto;
}

.story-paths__result-statement {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2.25rem);
  line-height: 1.28;
  letter-spacing: -0.04em;
  text-wrap: balance;
  max-width: 26rem;
  margin-inline: auto;
  font-style: italic;
}

.story-paths__result-final {
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.85rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 24ch;
  font-style: italic;
  text-wrap: balance;
}

.cta__grid {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}

.cta__copy {
  padding: 0;
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
}

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

.cta__title {
  max-width: 18ch;
  display: grid;
  gap: 0.14em;
  line-height: 0.92;
}

.cta__title span {
  display: block;
}

.cta__title span:last-child {
  max-width: 17ch;
}

.about__statement {
  padding: clamp(3rem, 5.5vw, 5rem) 0 clamp(1.5rem, 2.5vw, 2.25rem);
  margin-top: clamp(1.35rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(31, 24, 18, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03));
}

.about__statement-inner {
  display: grid;
  gap: 0.85rem;
  align-items: start;
}

.about__statement-main {
  margin: 0;
  max-width: 62rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.9vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.about__statement-main em {
  font-style: italic;
  color: var(--orange);
}

.about__statement-main-accent {
  color: var(--orange);
  font-style: italic;
}

.about__statement-sub {
  margin: 0;
  max-width: 40ch;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.about--backdrop {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #efe7de;
}

.about__backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(244, 237, 229, 0.95) 0%, rgba(244, 237, 229, 0.8) 28%, rgba(244, 237, 229, 0.18) 62%, rgba(244, 237, 229, 0.05) 100%),
    url("../assets/site-images/What-is-chirality-3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 48%;
  transform: scale(1.02);
}

.about__eyebrow {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: 0 auto;
  padding-top: clamp(4rem, 7vw, 6.25rem);
  padding-left: clamp(1rem, 2vw, 2rem);
  padding-bottom: clamp(1rem, 1.8vw, 1.4rem);
}

.about__backdrop-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(20rem, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.25rem, 4vw, 4.5rem);
  align-items: stretch;
  padding-top: 0;
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.about__backdrop-copy,
.about__backdrop-insight,
.about__backdrop-statement {
  position: relative;
  z-index: 1;
}

.about__backdrop-copy {
  max-width: 26rem;
  min-height: clamp(27rem, 35vw, 32rem);
  padding: clamp(1.55rem, 2.8vw, 2.2rem);
  border-radius: 1.35rem;
  background: rgba(244, 237, 229, 0.48);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 36px rgba(20, 16, 12, 0.06);
  display: flex;
  flex-direction: column;
}

.about__backdrop-insight {
  max-width: 31rem;
  min-height: clamp(27rem, 35vw, 32rem);
  justify-self: end;
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  border-radius: 1.35rem;
  background: rgba(244, 237, 229, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 36px rgba(20, 16, 12, 0.04);
  display: flex;
  flex-direction: column;
}

.about__backdrop-statement {
  grid-column: 1 / -1;
  max-width: 58rem;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  padding-top: clamp(2.4rem, 5vw, 4.6rem);
  margin-top: clamp(0.25rem, 1.2vw, 0.9rem);
}

.about__backdrop-statement .about__statement-main {
  max-width: 44rem;
  margin: 0 auto;
}

.about__backdrop-statement .about__statement-sub {
  max-width: 36rem;
  margin: 0 auto;
}

.about__contrast {
  margin: 0.5rem 0 0;
  color: var(--orange);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.35;
}

.about__examples {
  margin-top: 1rem;
  color: rgba(31, 24, 18, 0.84);
  font-size: 0.98rem;
  line-height: 1.6;
}

.comparison--soft {
  margin-bottom: 0;
}

.about__backdrop-copy .section-title,
.about__backdrop-insight .section-title {
  text-wrap: balance;
}

.about__backdrop-copy p:not(.eyebrow),
.about__backdrop-insight .comparison__label,
.about__backdrop-statement .about__statement-sub {
  color: rgba(31, 24, 18, 0.82);
}

.about__backdrop-copy em,
.about__backdrop-insight .section-title__accent,
.about__backdrop-statement .about__statement-main em,
.about__backdrop-statement .about__statement-main-accent {
  color: var(--orange);
}

.about__backdrop-insight .comparison__row {
  border-top-color: rgba(31, 24, 18, 0.08);
}

.about__backdrop-insight .comparison__divider {
  background: linear-gradient(90deg, transparent, rgba(97, 85, 73, 0.18), transparent);
}

.about__backdrop-insight .comparison__divider::before,
.about__backdrop-insight .comparison__divider::after {
  background: rgba(97, 85, 73, 0.22);
}

.about__backdrop-insight .comparison__label {
  font-size: 0.95rem;
}

.about__backdrop-insight .section-title {
  max-width: 12ch;
}

.cta__lede {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
  line-height: 1.14;
  max-width: 18ch;
  text-wrap: balance;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--orange);
  color: #2a241e;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta__media {
  margin: 0;
  min-height: 26rem;
  overflow: hidden;
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
}

.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  will-change: transform;
}

.cta--backdrop {
  position: relative;
  overflow: hidden;
  background: #efe7de;
}

.cta__backdrop-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(244, 237, 229, 0.92) 0%, rgba(244, 237, 229, 0.76) 30%, rgba(244, 237, 229, 0.2) 64%, rgba(244, 237, 229, 0.06) 100%),
    url("../assets/site-images/Our experiences - Every mirror reveals something different.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 72% center;
  transform: scale(1.02);
}

.cta__backdrop-grid {
  position: relative;
  z-index: 1;
  min-height: clamp(42rem, 78vh, 54rem);
  display: grid;
  grid-template-columns: minmax(18rem, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.cta__copy--backdrop {
  max-width: 33rem;
  padding: clamp(1.65rem, 3.25vw, 2.5rem);
  border-radius: 1.65rem;
  background: rgba(244, 237, 229, 0.46);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(20, 16, 12, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);
  gap: 1.35rem;
}

.cta__copy--backdrop .eyebrow {
  margin-bottom: 0.72rem;
}

.cta__copy--backdrop .section-title,
.cta__copy--backdrop .cta__lede {
  color: var(--ink);
}

.cta__copy--backdrop .section-title__accent {
  color: var(--orange);
}

.cta__copy--backdrop .cta__button {
  color: var(--ink);
}

.cta__copy--backdrop .cta__title {
  gap: 0.26em;
  max-width: 18ch;
  line-height: 0.98;
}

.cta__copy--backdrop .cta__title span:last-child {
  max-width: 18ch;
}

.cta__copy--backdrop .cta__lede {
  max-width: 17.5ch;
  line-height: 1.28;
}

.footer {
  padding: clamp(2rem, 4vw, 3rem) 0 1.5rem;
  background: #040404;
  color: rgba(255, 255, 255, 0.74);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(14rem, 0.8fr) minmax(0, 0.75fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  max-width: 20rem;
}

.footer__brand img {
  width: 8.8rem;
  margin-bottom: 1rem;
}

.footer__brand p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.52);
}

.footer a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: #fff;
}

.footer__links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.95rem;
  justify-self: end;
  width: fit-content;
  padding-top: 0.35rem;
  white-space: nowrap;
}

.footer__quote {
  margin: 0;
  align-self: center;
  justify-self: center;
  max-width: 22rem;
  text-align: center;
}

.footer__quote p {
  margin: 0;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.45;
  font-style: italic;
}

.footer__quote cite {
  display: block;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__links span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

@media (max-width: 1180px) {
  .hero__grid,
  .about,
  .split__grid,
  .approach__shell,
  .cta__grid,
  .footer__grid,
  .offerings__shell {
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 46svh;
  }

  .hero__copy {
    max-width: 44rem;
    padding-top: 3.25rem;
  }

  .hero__topbar {
    align-items: center;
  }

  .hero-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .about__visual {
    min-height: 360px;
  }

  .about__backdrop-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1.25rem;
    padding-bottom: clamp(3rem, 5vw, 4rem);
  }

  .about__eyebrow {
    padding-top: clamp(2.5rem, 6vw, 3.5rem);
    padding-left: 0;
    padding-bottom: 0.9rem;
  }

  .about__backdrop-copy,
  .about__backdrop-insight {
    max-width: none;
    min-height: 0;
    padding: 1.05rem;
    border-radius: 1rem;
    background: rgba(244, 237, 229, 0.36);
  }

  .about__backdrop-statement {
    padding-top: 1.6rem;
  }

  .about__backdrop-insight .comparison__row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 0.95rem 0;
  }

  .about__backdrop-insight .comparison__divider {
    display: none;
  }

  .about__backdrop-insight .comparison__label--right {
    text-align: left;
    color: rgba(31, 24, 18, 0.72);
  }

  .science-name__shell {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    min-height: 0;
  }

  .science-name__copy {
    max-width: none;
  }

  .science-name__lede,
  .science-name__body {
    max-width: none;
  }

  .science-name__title {
    max-width: 12ch;
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .science-name__frame {
    aspect-ratio: 2172 / 724;
    border-radius: 1.2rem;
  }

  .reflection__overlay {
    width: min(58vw, 42rem);
  }

  .footer__brand {
    order: 1;
  }

  .footer__quote {
    order: 3;
    justify-self: start;
    text-align: left;
    max-width: none;
    margin-top: 0.1rem;
  }

  .footer__links {
    order: 2;
    justify-self: start;
    justify-content: flex-start;
    padding-top: 0.1rem;
    gap: 0.7rem;
    font-size: 0.82rem;
  }

  .split__grid {
    min-height: 0;
    gap: 0;
  }

  .split__media {
    min-height: 22rem;
    border-radius: 1.35rem 1.35rem 0 0;
  }

  .split__copy {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.8rem 1.5rem 1.9rem;
  }

  .step {
    grid-template-columns: 56px 1fr;
  }

  .step__copy {
    grid-column: 2;
  }

  .offerings__intro,
  .offering-card {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .offering-card:last-child {
    border-bottom: 0;
  }

  .cta__copy .section-title {
    max-width: 15ch;
  }

  .offerings__cards {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 0.75rem;
  }

  .offerings__intro {
    gap: 0.9rem;
    padding-bottom: 3.25rem;
  }

  .offerings__lede {
    max-width: 39ch;
  }

  .offering-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
  }

  .cta__grid {
    grid-template-columns: 1fr;
  }

  .cta__media {
    min-height: 0;
  }

  .cta__backdrop-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .story-structure__streams {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .story-stream--ramanath,
  .story-stream--srinivasamurthy {
    max-width: none;
    justify-self: start;
    padding-top: 0;
    transform: none;
  }

  .story-stream--srinivasamurthy .story-stream__list li,
  .story-stream--ramanath .story-stream__list li {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .story-structure__shared {
    justify-items: start;
  }

  .story-structure__shared-rail {
    min-height: 0;
    justify-items: start;
  }

  .story-structure__shared-rail::before {
    left: 0;
    transform: none;
  }

  .story-structure__shared-word {
    text-align: left;
  }

  .story-structure__profiles {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .partner-profile--srinivasamurthy {
    justify-self: start;
    padding-top: 0;
  }

  .story-structure__final {
    max-width: 14ch;
  }

  .story-paths__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-path {
    max-width: none;
  }

  .story-path--right {
    justify-self: start;
    padding-top: 0;
  }

  .story-path__list li {
    text-align: left;
  }

  .story-paths__bridge {
    min-height: 0;
    height: 3.5rem;
    order: 2;
  }

  .story-paths__bridge-line {
    left: 50%;
    transform: translateX(-50%);
  }

  .story-paths__bridge-node {
    left: 50%;
    transform: translateX(-50%);
  }

  .story-paths__result {
    max-width: none;
  }

  .footer__grid {
    gap: 2rem;
  }

  .footer__links {
    order: 2;
    justify-self: start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 0.1rem;
    gap: 0.4rem 0.7rem;
    font-size: 0.82rem;
  }

  .footer__quote {
    order: 3;
    justify-self: start;
    text-align: left;
    max-width: 16rem;
    margin-top: 0.4rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100vw - 1.5rem, 1000px);
  }

  .hero__grid {
    gap: 1.85rem;
  }

  .hero__copy {
    padding-top: 2.1rem;
  }

  .hero__title {
    font-size: clamp(2.25rem, 10vw, 3.6rem);
    line-height: 0.92;
  }

  .hero__intro {
    max-width: 26rem;
    font-size: 0.95rem;
    line-height: 1.66;
  }

  .about,
  .approach__shell,
  .cta__grid,
  .split__grid,
  .science-name__shell {
    gap: 2.35rem;
  }

  .science-name__shell {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .science-name__title {
    max-width: 11ch;
    font-size: clamp(2.15rem, 11vw, 3.45rem);
  }

  .science-name__lede,
  .science-name__body {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .science-name__caption {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .science-name__caption-line {
    width: 2.8rem;
  }

  .approach__shell {
    gap: 2.15rem;
  }

  .approach__title {
    max-width: 13ch;
    font-size: clamp(2.1rem, 10vw, 3.6rem);
  }

  .approach__lede {
    max-width: 34ch;
    font-size: 0.97rem;
    line-height: 1.6;
  }

  .approach__diagram {
    width: 100%;
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding-top: 0.1rem;
  }

  .approach__diagram-ring,
  .approach__center {
    display: none;
  }

  .step {
    position: static;
    width: auto;
    transform: none;
    grid-template-columns: 46px 1fr;
    gap: 0.75rem 0.9rem;
    padding: 1rem 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.5);
  }

  .step__title {
    font-size: 0.98rem;
  }

  .step__body {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .reflection {
    min-height: 0;
    background-position: center center;
  }

  .reflection__overlay {
    width: 100%;
  }

  .reflection__content {
    width: min(100%, 36rem);
    padding: 2.9rem 1.15rem 2.9rem clamp(2rem, 6vw, 2.55rem);
    gap: 1rem;
  }

  .reflection__title {
    max-width: none;
    width: fit-content;
    font-size: clamp(2rem, 9vw, 3.2rem);
    line-height: 0.9;
    gap: 0.12em;
  }

  .reflection__lede,
  .reflection__body {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .reflection__signature {
    margin-top: 0.2rem;
    font-size: 1.15rem;
  }

  .reflection::before {
    background: linear-gradient(90deg, rgba(243, 237, 230, 0.98) 0%, rgba(243, 237, 230, 0.97) 46%, rgba(243, 237, 230, 0.84) 72%, rgba(243, 237, 230, 0.24) 100%);
  }

  .about__visual {
    min-height: 240px;
  }

  .split__media {
    min-height: 18rem;
  }

  .comparison {
    gap: 0.75rem 1rem;
  }

  .about__backdrop-copy,
  .about__backdrop-insight {
    padding: 0.95rem;
    backdrop-filter: blur(6px);
  }

  .offerings__intro {
    padding-bottom: 3rem;
  }

  .offerings__intro-copy .section-title {
    max-width: 12ch;
    font-size: clamp(2.05rem, 10vw, 3.35rem);
  }

  .offerings__cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1rem;
  }

  .offering-card__media {
    height: 13rem;
  }

  .offering-card__body {
    padding: 1.3rem 1.15rem 1.4rem;
    gap: 0.85rem;
  }

  .cta__copy {
    padding-right: 0;
  }

  .cta__media {
    min-height: 18rem;
  }

  .cta__copy--backdrop {
    max-width: none;
    padding: 1rem;
    border-radius: 1rem;
  }

  .cta__backdrop-bg {
    background-position: 64% center;
  }

  .cta__copy--backdrop {
    padding: 1.15rem;
    border-radius: 1.15rem;
    background: rgba(244, 237, 229, 0.46);
    gap: 1.1rem;
  }

  .cta__copy--backdrop .eyebrow {
    margin-bottom: 0.6rem;
  }

  .cta__copy--backdrop .cta__title {
    gap: 0.2em;
    max-width: 17ch;
    line-height: 0.96;
  }

  .cta__copy--backdrop .cta__title span:last-child {
    max-width: 17ch;
  }

  .cta__copy--backdrop .cta__lede {
    max-width: 18ch;
    line-height: 1.24;
  }

  .about__backdrop {
    background-position: center 45%;
  }

  .about__backdrop-grid {
    gap: 1rem;
    padding-top: 2.85rem;
    padding-bottom: 2.85rem;
  }

  .about__backdrop-statement {
    gap: 0.75rem;
    padding-top: 1.35rem;
    margin-top: 0.5rem;
  }

  .about__examples {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .story-structure {
    padding: clamp(4rem, 9vw, 5.5rem) 0 clamp(3.5rem, 8vw, 5rem);
  }

  .story-structure__intro .section-title {
    max-width: 10.5ch;
    font-size: clamp(2.35rem, 12.8vw, 4rem);
  }

  .story-structure__lede {
    max-width: 30ch;
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .story-structure__shared-rail {
    padding: 0.9rem 0;
  }

  .partner-profile__header h3 {
    max-width: 11ch;
  }

  .partner-profile__body p {
    line-height: 1.68;
  }

  .story-structure__conclusion {
    gap: 0.8rem;
  }

  .story-structure__conclusion p {
    line-height: 1.68;
  }

  .story-structure__final {
    max-width: 12ch;
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .story-paths {
    padding: clamp(4.6rem, 10vw, 5.75rem) 0 clamp(4rem, 9vw, 5rem);
  }

  .story-paths__intro .section-title {
    max-width: 12ch;
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .story-paths__lede {
    max-width: 30ch;
    font-size: 1rem;
    line-height: 1.65;
  }

  .story-paths__grid {
    gap: 1.9rem;
  }

  .story-path h3 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .story-path__lead {
    line-height: 1.66;
  }

  .story-path--right .story-path__lead,
  .story-path--right .story-path__list {
    margin-left: 0;
  }

  .story-path--right .story-path__lead {
    text-align: left;
    text-align-last: auto;
    hyphens: none;
  }

  .story-path__list li {
    font-size: 1rem;
  }

  .story-paths__bridge {
    height: 2.75rem;
  }

  .story-paths__result-line {
    line-height: 1.64;
  }

  .story-paths__result-statement {
    max-width: 30rem;
    font-size: clamp(1.2rem, 4.8vw, 1.9rem);
  }

  .story-paths__result-final {
    max-width: 24ch;
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .footer__brand {
    order: 1;
  }

  .footer__links {
    order: 2;
    justify-self: start;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 0.1rem;
    gap: 0.45rem 0.7rem;
    font-size: 0.82rem;
  }

  .footer__quote {
    order: 3;
    justify-self: start;
    text-align: left;
    max-width: 18rem;
    margin-top: 0.2rem;
    font-size: 0.92rem;
  }

  .footer__quote p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .footer__quote cite {
    margin-top: 0.45rem;
    font-size: 0.68rem;
  }

  .footer__brand p {
    font-size: 0.87rem;
    line-height: 1.58;
  }

  .copy-email,
  .story-path__linkedin {
    width: 2.1rem;
    height: 2.1rem;
  }

  .copy-email svg {
    width: 1rem;
    height: 1rem;
  }
}

.legal-page {
  min-height: 100svh;
}

.legal-page .shell {
  width: min(100vw - clamp(2rem, 8vw, 8rem), 1100px);
}

.contact-page .shell {
  width: min(100vw - clamp(2rem, 8vw, 8rem), 1180px);
}

.legal-header {
  padding: clamp(1rem, 2vw, 1.6rem) 0 0;
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.legal-header .brand {
  width: clamp(8.5rem, 10vw, 11rem);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid var(--orange);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-main {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.legal-hero {
  max-width: 48rem;
  display: grid;
  justify-items: start;
}

.legal-hero .eyebrow {
  margin-bottom: 0.8rem;
}

.legal-updated {
  margin: 0.8rem 0 0;
  color: var(--ink-faint);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-lede {
  margin: 1.35rem 0 0;
  max-width: 32rem;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.95vw, 1.9rem);
  line-height: 1.38;
  font-style: italic;
  text-wrap: balance;
}

.legal-content {
  margin-top: clamp(2.75rem, 5vw, 4rem);
  display: grid;
  gap: 0;
  max-width: 48rem;
}

.legal-section {
  padding: 1.55rem 0 1.75rem;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.legal-section p,
.legal-section li {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.82;
  text-wrap: pretty;
}

.legal-section p + p {
  margin-top: 0.75rem;
}

.legal-section ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.42rem;
}

.legal-section a {
  color: var(--orange);
  font-weight: 700;
  border-bottom: 1px solid rgba(244, 125, 24, 0.5);
  padding-bottom: 0.08rem;
}

.legal-section a:hover,
.legal-section a:focus-visible {
  border-bottom-color: var(--orange);
}

.legal-contact {
  margin-top: 0.5rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(31, 24, 18, 0.08);
}

.legal-contact strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.1;
}

.legal-footer {
  padding: 0 0 clamp(2rem, 4vw, 3rem);
}

.legal-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 0.86rem;
}

.legal-footer__inner p {
  margin: 0;
}

.legal-footer__inner a {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid var(--orange);
}

.contact-main {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 3rem);
}

.contact-hero {
  max-width: 40rem;
  display: grid;
  justify-items: start;
  margin-bottom: clamp(1.25rem, 2.2vw, 1.75rem);
}

.contact-hero .eyebrow {
  margin-bottom: 0.8rem;
}

.contact-lede {
  margin: 0.95rem 0 0;
  max-width: 33rem;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.38;
  font-style: italic;
  text-wrap: balance;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
}

.contact-copy {
  max-width: 30rem;
  padding-top: 0;
}

.contact-copy__lead {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.38;
  text-wrap: balance;
}

.contact-copy__body {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.contact-details {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.contact-details__item {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.contact-details__label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-details__item a,
.contact-details__item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-details__item a {
  font-weight: 700;
  color: var(--ink);
}

.contact-email-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.contact-card {
  padding: clamp(1.05rem, 2vw, 1.5rem);
  border: 1px solid rgba(31, 24, 18, 0.12);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(247, 243, 238, 0.54)),
    rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(20, 16, 12, 0.06);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

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

.contact-field {
  display: grid;
  gap: 0.35rem;
}

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

.contact-field span {
  color: var(--ink-faint);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(31, 24, 18, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  padding: 0.82rem 0.95rem;
  line-height: 1.5;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

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

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(244, 125, 24, 0.7);
  box-shadow: 0 0 0 4px rgba(244, 125, 24, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(48, 42, 37, 0.42);
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  justify-content: space-between;
}

.contact-submit {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  padding: 0.82rem 1.2rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-1px);
  background: #ff8b2f;
  box-shadow: 0 8px 24px rgba(244, 125, 24, 0.24);
}

.contact-form__note {
  margin: 0;
  max-width: 22rem;
  color: var(--ink-faint);
  font-size: 0.82rem;
  line-height: 1.5;
}

.contact-form__note a {
  color: var(--orange);
  font-weight: 700;
  border-bottom: 1px solid rgba(244, 125, 24, 0.45);
  padding-bottom: 0.08rem;
}

.contact-form__note a:hover,
.contact-form__note a:focus-visible {
  border-bottom-color: var(--orange);
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.copy-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid rgba(31, 24, 18, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink-soft);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.copy-email svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

.copy-email:hover,
.copy-email:focus-visible {
  color: var(--orange);
  border-color: rgba(244, 125, 24, 0.38);
  transform: translateY(-1px);
  outline: none;
}

.copy-email.is-copied {
  color: #111;
  background: rgba(244, 125, 24, 0.16);
  border-color: rgba(244, 125, 24, 0.28);
}

.copy-email.is-copied svg {
  transform: scale(0.96);
}

@media (max-width: 1180px) {
  .contact-page .shell {
    width: min(100vw - clamp(1.5rem, 4vw, 2.5rem), 1000px);
  }

  .contact-hero {
    max-width: 48rem;
    margin-bottom: 1.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

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

  .contact-form__note {
    max-width: 24rem;
  }
}

@media (max-width: 760px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .footer__brand {
    order: 1;
  }

  .footer__quote {
    order: 3;
    justify-self: start;
    text-align: left;
    max-width: 18rem;
    margin-top: 0.2rem;
  }

  .footer__quote p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .footer__quote cite {
    margin-top: 0.45rem;
    font-size: 0.68rem;
  }

  .footer__links {
    order: 2;
    justify-self: start;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 0.1rem;
    gap: 0.45rem 0.7rem;
    font-size: 0.82rem;
  }

  .footer__brand p {
    font-size: 0.87rem;
    line-height: 1.58;
  }

  .legal-header__inner,
  .legal-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    padding-top: 2.25rem;
  }

  .legal-section {
    padding: 1.35rem 0 1.55rem;
  }

  .legal-page .shell {
    width: min(100vw - 1.5rem, 1000px);
  }

  .contact-page .shell {
    width: min(100vw - 1.5rem, 1000px);
  }

  .contact-main {
    padding-top: 1.75rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form__note {
    max-width: none;
  }

  .copy-email,
  .story-path__linkedin {
    width: 2.1rem;
    height: 2.1rem;
  }

  .copy-email svg {
    width: 1rem;
    height: 1rem;
  }
}

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

  .reveal,
  .offering-card,
  .footer a,
  .button,
  .hero-nav a {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
