@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --font-display: "Cormorant Garamond";
  --font-sans: "Manrope";
}

:root {
  --ink: #091426;
  --navy: #071222;
  --navy-soft: #0d1d33;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --white: #ffffff;
  --slate: #526071;
  --teal: #087f78;
  --teal-bright: #19b6a8;
  --blue: #2869d8;
  --gold: #b99349;
  --line: rgba(9, 20, 38, 0.12);
  --dark-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(7, 18, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 78px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 232, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  width: 230px;
  height: 58px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.desktop-nav a {
  color: #38475a;
  transition: color 180ms ease;
}

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

.nav-toggle,
.mobile-nav-contact {
  display: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--navy);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid var(--teal-bright);
  border-radius: 6px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 30px rgba(8, 127, 120, 0.2);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #096c67;
  box-shadow: 0 16px 36px rgba(8, 127, 120, 0.28);
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.75rem;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.23);
  background: transparent;
  box-shadow: none;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(7, 18, 34, 0.98), rgba(9, 25, 45, 0.96)),
    var(--navy);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  width: 500px;
  height: 500px;
  top: -280px;
  right: 4%;
  background: radial-gradient(
    circle,
    rgba(40, 105, 216, 0.24),
    transparent 68%
  );
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  bottom: -250px;
  left: 35%;
  background: radial-gradient(
    circle,
    rgba(25, 182, 168, 0.16),
    transparent 68%
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 70px;
  align-items: center;
  padding-block: 92px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-on-dark {
  color: #55d7ca;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3.7rem, 6.1vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.047em;
  line-height: 0.92;
}

.hero h1 span {
  color: #d1ad65;
  font-style: italic;
}

.hero-lede {
  max-width: 690px;
  margin: 32px 0 0;
  color: #d3dce7;
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 31px;
  color: #aebac9;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-line span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--teal-bright);
}

.executive-card {
  position: relative;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.executive-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  content: "";
  background: linear-gradient(var(--blue), var(--teal-bright), var(--gold));
}

.executive-identity {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.executive-portrait-frame {
  width: 190px;
  height: 226px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: var(--cream);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.executive-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 19%;
}

.card-kicker {
  margin: 0 0 12px;
  color: #55d7ca;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.executive-card h2 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 2.35rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.executive-card > p:not(.card-kicker) {
  margin: 19px 0 0;
  color: #c8d2de;
  font-size: 0.92rem;
  line-height: 1.8;
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 23px;
  border-top: 1px solid var(--dark-line);
  color: #aebac9;
  font-size: 0.72rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 5px rgba(25, 182, 168, 0.12);
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

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

.proof-item {
  min-height: 152px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 1px solid var(--line);
}

.proof-item strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.proof-item span {
  margin-top: 9px;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section {
  padding-block: 110px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: end;
}

.split-heading > p {
  margin: 0;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.9;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 65px;
}

.expertise-card {
  position: relative;
  min-height: 345px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 18, 34, 0.04);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.expertise-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 127, 120, 0.38);
  box-shadow: var(--shadow);
}

.expertise-card:first-child {
  grid-column: 1 / -1;
}

.expertise-visual {
  height: 260px;
  margin: -40px -40px 28px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #e8ecef;
}

.expertise-card:first-child .expertise-visual {
  height: 360px;
}

.expertise-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.expertise-card:hover .expertise-visual img {
  transform: scale(1.025);
}

.service-number {
  color: var(--gold);
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.expertise-card h3 {
  max-width: 520px;
  margin: 28px 0 14px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.expertise-card > p {
  max-width: 650px;
  margin: 0;
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.85;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tag-row span {
  padding: 7px 11px;
  border: 1px solid rgba(8, 127, 120, 0.16);
  border-radius: 999px;
  background: rgba(8, 127, 120, 0.06);
  color: #176661;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(8, 127, 120, 0.32);
}

.dragon-section {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(25, 182, 168, 0.13),
      transparent 30%
    ),
    var(--navy);
  color: var(--white);
}

.dragon-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
}

.dragon-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.dragon-copy h2 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3.6rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.dragon-intro {
  margin: 30px 0 0;
  color: #c8d2de;
  font-size: 1rem;
  line-height: 1.9;
}

.dragon-copy blockquote {
  margin: 38px 0 0;
  padding: 8px 0 8px 23px;
  border-left: 2px solid var(--gold);
  color: #d7bc87;
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.65rem;
  font-style: italic;
  line-height: 1.35;
}

.workbook-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.workbook-cover {
  min-height: 500px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(155deg, rgba(7, 18, 34, 0.06), rgba(7, 18, 34, 0.38)),
    linear-gradient(135deg, #0b8880, #12366a 72%, #0a1c34);
}

.workbook-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.workbook-cover p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
  max-width: 170px;
}

.workbook-cover h3 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 3.35rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-align: center;
}

.edition {
  margin-top: 25px;
  color: #e1c790;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.workbook-details {
  padding: 44px 38px;
}

.workbook-details h3 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 2.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.workbook-details > p:not(.card-kicker) {
  margin: 20px 0;
  color: #c8d2de;
  font-size: 0.86rem;
  line-height: 1.8;
}

.workbook-details ul,
.engagement-card ul {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.workbook-details li,
.engagement-card li {
  position: relative;
  margin-top: 10px;
  padding-left: 25px;
  font-size: 0.8rem;
}

.workbook-details li {
  color: #d7e0e9;
}

.workbook-details li::before,
.engagement-card li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--teal-bright);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #62d9cf;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(98, 217, 207, 0.4);
}

.text-link:hover {
  color: #91e8df;
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  max-width: 610px;
  margin: 25px auto 0;
  color: var(--slate);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 58px;
}

.engagement-card {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(7, 18, 34, 0.05);
}

.engagement-card.featured-card {
  border-color: rgba(8, 127, 120, 0.32);
  box-shadow: 0 16px 45px rgba(8, 127, 120, 0.1);
}

.engagement-card h3 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 2.45rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.engagement-card > p:not(.card-kicker) {
  margin: 20px 0 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.engagement-card li {
  color: #334256;
}

.engagement-card .text-link {
  color: var(--teal);
  border-color: rgba(8, 127, 120, 0.35);
}

.operator-section {
  padding-block: 120px;
  border-block: 1px solid var(--line);
  background: var(--cream);
}

.operator-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.operator-visual {
  position: relative;
  min-height: 530px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.operator-visual::before {
  position: absolute;
  inset: 24px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  z-index: 2;
}

.operator-visual .operator-photo {
  width: 100%;
  height: 530px;
  object-fit: cover;
  border-radius: 0;
  opacity: 0.9;
}

.operator-visual .operator-trademark-photo {
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #e7e0d1;
  opacity: 1;
}

.operator-visual-trademark {
  min-height: 0;
  aspect-ratio: 3 / 2;
}

.operator-visual-trademark .operator-photo {
  height: 100%;
}

.operator-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 12, 24, 0.92),
    rgba(7, 18, 34, 0.04) 68%
  );
}

.operator-caption {
  position: absolute;
  right: 43px;
  bottom: 40px;
  left: 43px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  z-index: 3;
}

.operator-caption span {
  color: #5fd9cf;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operator-caption strong {
  max-width: 210px;
  text-align: right;
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.operator-copy h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.operator-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 25px 0 0;
  color: #46566a;
  font-size: 0.98rem;
}

.dark-link {
  margin-top: 30px;
  color: var(--teal);
  border-color: rgba(8, 127, 120, 0.35);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 95px;
  background:
    radial-gradient(
      circle at 85% 40%,
      rgba(40, 105, 216, 0.23),
      transparent 24%
    ),
    var(--navy-soft);
  color: var(--white);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
}

.final-cta h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #cbd5df;
  font-size: 0.95rem;
}

.button-light {
  min-width: 230px;
  border-color: var(--cream);
  background: var(--cream);
  color: var(--navy);
  box-shadow: none;
}

.button-light:hover {
  background: var(--white);
}

.site-footer {
  padding-top: 75px;
  background: #050d19;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.9fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 260px;
  height: 75px;
  object-fit: contain;
  object-position: left center;
  filter: invert(1) grayscale(1) brightness(2.4);
  mix-blend-mode: screen;
}

.footer-brand p {
  max-width: 430px;
  margin: 20px 0 0;
  color: #9eabba;
  font-size: 0.82rem;
}

.footer-brand .location {
  color: #61cfc5;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.site-footer nav strong {
  margin-bottom: 10px;
  color: #61cfc5;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer nav a {
  color: #aeb9c6;
  font-size: 0.78rem;
}

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

.footer-bottom {
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #778493;
  font-size: 0.65rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.portfolio-hero {
  padding-block: 105px;
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(25, 182, 168, 0.14),
      transparent 26%
    ),
    var(--navy);
  color: var(--white);
}

.portfolio-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
}

.portfolio-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.portfolio-hero-copy > p {
  margin: 0 0 30px;
  color: #cad4df;
  font-size: 1rem;
  line-height: 1.9;
}

.portfolio-results {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.result-grid article {
  min-height: 270px;
  padding: 38px 28px;
  border-left: 1px solid var(--line);
}

.result-grid article:last-child {
  border-right: 1px solid var(--line);
}

.result-grid strong {
  color: var(--teal);
  font-family: var(--font-display), Georgia, serif;
  font-size: 3.1rem;
  font-weight: 600;
  line-height: 1;
}

.result-grid h2 {
  margin: 18px 0 10px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
}

.result-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 0.78rem;
  line-height: 1.75;
}

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

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 65px;
}

.owned-brand-card {
  position: relative;
  min-height: 310px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.owned-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.brand-index {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(9, 20, 38, 0.12);
  font-family: var(--font-display), Georgia, serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
}

.owned-brand-card > p {
  margin: 0 0 28px;
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.owned-brand-logo {
  width: 100%;
  height: 108px;
  margin: 0 0 25px;
  padding: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.owned-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 10px 14px;
  mix-blend-mode: multiply;
}

.owned-brand-card h3 {
  max-width: 280px;
  margin: 0 0 17px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.owned-brand-card > span {
  display: block;
  color: var(--slate);
  font-size: 0.8rem;
  line-height: 1.75;
}

.timeline-section {
  padding-block: 120px;
  background: var(--navy);
  color: var(--white);
}

.timeline-shell {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.timeline-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.timeline-intro h2 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.timeline-intro > p:last-child {
  margin: 28px 0 0;
  color: #bac6d2;
  font-size: 0.9rem;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: 0 0 45px;
}

.timeline-year {
  color: #d7bc87;
  font-family: var(--font-display), Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.timeline-content {
  position: relative;
  padding: 0 0 42px 35px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.timeline-content::before {
  position: absolute;
  top: 7px;
  left: -5px;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 6px rgba(25, 182, 168, 0.1);
}

.timeline-content p {
  margin: 0 0 7px;
  color: #57d1c6;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-content h3 {
  margin: 0 0 9px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.05;
}

.timeline-content span {
  color: #aebac8;
  font-size: 0.82rem;
}

.timeline-media {
  max-width: 500px;
  margin-top: 23px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 13px;
}

.timeline-media figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: var(--paper);
}

.timeline-logo {
  height: 92px;
  padding: 10px;
}

.timeline-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.timeline-proof img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.timeline-media figcaption {
  padding: 8px 10px 9px;
  color: #4b5a6c;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.archive-section {
  background: var(--cream);
}

.archive-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.archive-heading > p {
  max-width: 480px;
  margin: 0;
  color: var(--slate);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.archive-grid figure {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 18, 34, 0.05);
}

.archive-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 5px;
  background: #eef0f2;
}

.archive-grid figcaption {
  padding: 11px 6px 2px;
  color: #6b7786;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-hero {
  padding-block: 105px;
  background:
    radial-gradient(
      circle at 82% 24%,
      rgba(25, 182, 168, 0.16),
      transparent 27%
    ),
    var(--navy);
  color: var(--white);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
}

.service-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.9;
}

.service-hero-copy > p {
  margin: 0 0 30px;
  color: #cbd5df;
  font-size: 1rem;
  line-height: 1.9;
}

.service-visual {
  padding: 34px 0 0;
  background: var(--cream);
}

.service-visual-frame {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 16px;
  background: #dfe5e8;
  box-shadow: var(--shadow);
}

.service-visual-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 13, 25, 0.76), transparent 72%);
}

.service-visual-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.service-visual-caption {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 42px;
  max-width: 500px;
  color: var(--white);
}

.service-visual-caption p {
  margin: 0 0 10px;
  color: #61ddd2;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-visual-caption strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.05;
}

.service-problem {
  padding-block: 100px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.service-problem-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.service-problem h2 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.service-problem-grid > div > p {
  margin: 0;
  color: #435267;
  font-size: 0.98rem;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px 20px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  position: relative;
  padding: 14px 14px 14px 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.52);
  color: #344356;
  font-size: 0.76rem;
}

.outcome-list li::before {
  position: absolute;
  left: 15px;
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.service-deliverables {
  background: var(--paper);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.deliverable-grid article {
  min-height: 320px;
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.deliverable-grid article > span {
  color: var(--gold);
  font-family: var(--font-display), Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}

.deliverable-grid h3 {
  margin: 34px 0 14px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.deliverable-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 0.8rem;
}

.service-approach {
  padding-block: 110px;
  background: var(--navy);
  color: var(--white);
}

.service-approach-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: end;
}

.service-approach-heading h2 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.approach-grid article {
  min-height: 275px;
  padding: 35px;
  border: 1px solid var(--dark-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.approach-grid article > span {
  color: #55d7ca;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.approach-grid h3 {
  margin: 34px 0 13px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 2.15rem;
  font-weight: 600;
}

.approach-grid p {
  margin: 0;
  color: #b9c5d1;
  font-size: 0.8rem;
}

.fit-section {
  background: var(--cream);
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.fit-grid h2 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.fit-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-grid li {
  position: relative;
  padding: 19px 15px 19px 45px;
  border-bottom: 1px solid var(--line);
  color: #344356;
  font-size: 0.9rem;
}

.fit-grid li::before {
  position: absolute;
  left: 15px;
  content: "→";
  color: var(--teal);
  font-weight: 900;
}

.related-links {
  padding-block: 34px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.related-links-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.related-links-inner > span {
  color: var(--slate);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-links-inner > div {
  display: flex;
  gap: 24px;
}

.related-links a {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
}

.work-hero {
  padding-block: 105px;
  background:
    radial-gradient(
      circle at 82% 30%,
      rgba(40, 105, 216, 0.2),
      transparent 30%
    ),
    var(--navy);
  color: var(--white);
}

.work-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
}

.work-hero h1 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.9;
}

.work-hero-grid > div:last-child > p {
  margin: 0;
  color: #cbd5df;
  font-size: 1rem;
  line-height: 1.9;
}

.work-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.work-stats span {
  padding: 15px;
  border: 1px solid var(--dark-line);
  border-radius: 7px;
  color: #aebac8;
  font-size: 0.68rem;
  line-height: 1.4;
}

.work-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.65rem;
}

/* Case studies */
.case-hero {
  padding-block: 105px;
  background:
    radial-gradient(
      circle at 82% 24%,
      rgba(25, 182, 168, 0.17),
      transparent 28%
    ),
    var(--navy);
  color: var(--white);
}

.case-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 84px;
  align-items: end;
}

.case-hero h1 {
  max-width: 740px;
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.9;
}

.case-hero-copy > p {
  margin: 0;
  color: #cbd5df;
  font-size: 1rem;
  line-height: 1.9;
}

.case-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.case-hero-stats span {
  min-height: 88px;
  padding: 15px;
  border: 1px solid var(--dark-line);
  border-radius: 7px;
  color: #aebac8;
  font-size: 0.68rem;
  line-height: 1.4;
}

.case-hero-stats strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.case-intro {
  padding-bottom: 78px;
}

.case-featured {
  padding: 0 0 120px;
  background: var(--paper);
}

.case-featured-list {
  display: grid;
  gap: 26px;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 18, 34, 0.08);
}

.case-study:nth-child(even) .case-study-media {
  order: 2;
}

.case-study-media {
  min-height: 560px;
  overflow: hidden;
  background: #e8ebef;
}

.case-study-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.case-study-media-contain {
  padding: 28px;
  display: grid;
  place-items: center;
  background: #e6eaed;
}

.case-study-media-contain img {
  width: 100%;
  height: auto;
  max-height: calc(100% - 8px);
  min-height: 0;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 18, 34, 0.14);
}

.case-study-copy {
  padding: 56px 52px;
  align-self: center;
}

.case-study-copy h2 {
  margin: 10px 0 32px;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(2.8rem, 4.2vw, 4.3rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.case-study-copy dl,
.case-study-copy dd {
  margin: 0;
}

.case-study-copy dl > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding-block: 16px;
  border-top: 1px solid var(--line);
}

.case-study-copy dt {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.case-study-copy dd {
  color: #526071;
  font-size: 0.83rem;
  line-height: 1.75;
}

.case-metrics,
.case-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.case-metrics span,
.case-card-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(8, 127, 120, 0.18);
  border-radius: 999px;
  background: rgba(8, 127, 120, 0.05);
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.case-additional {
  background: var(--navy);
  color: var(--white);
}

.case-additional-heading {
  max-width: 830px;
}

.case-additional-heading h2 {
  margin: 10px 0 0;
  color: var(--white);
}

.case-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 62px;
}

.case-card {
  min-height: 330px;
  padding: 38px;
  border: 1px solid var(--dark-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.case-card > p {
  margin: 0;
  color: #62cfc5;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 18px 0 16px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.case-card > div:not(.case-card-tags) {
  color: #b5c1ce;
  font-size: 0.84rem;
  line-height: 1.8;
}

.case-card-tags span {
  border-color: rgba(97, 207, 197, 0.2);
  background: rgba(97, 207, 197, 0.07);
  color: #79d9d0;
}

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

.detailed-work-list {
  margin-top: 70px;
}

.detailed-work-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 55px;
  padding-block: 48px;
  border-top: 1px solid var(--line);
}

.detailed-work-card:last-child {
  border-bottom: 1px solid var(--line);
}

.organizations-section {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.organization-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 62px;
}

.organization-card {
  min-height: 152px;
  margin: 0;
  padding: 22px 18px 16px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(7, 18, 34, 0.04);
}

.organization-card img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  padding: 9px 12px;
  mix-blend-mode: multiply;
}

.organization-card-frank-rimerman img {
  width: 112%;
  height: 88px;
  margin-inline: -6%;
  padding: 2px 4px;
}

.organization-card figcaption {
  color: #536174;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.work-year strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display), Georgia, serif;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
}

.work-year span {
  display: block;
  margin-top: 12px;
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-description > p {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-description h2 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 2.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.work-description > div:not(.tag-row) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--slate);
  font-size: 0.9rem;
}

.work-description > .work-media {
  max-width: 620px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.work-media figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.work-media img {
  width: 100%;
  height: 145px;
  object-fit: contain;
  padding: 12px;
}

.work-media-proof img {
  object-fit: cover;
  padding: 0;
}

.work-media figcaption {
  padding: 9px 11px 10px;
  color: #5a6879;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.experience-section {
  padding-block: 110px;
  background: var(--navy);
  color: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.experience-grid h2 {
  max-width: 660px;
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 38px;
}

.industry-cloud span {
  padding: 9px 13px;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  color: #c3ced9;
  font-size: 0.68rem;
}

.credentials-card {
  padding: 40px;
  border: 1px solid var(--dark-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.credentials-card > div + div {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--dark-line);
}

.credentials-card > div > p:not(.card-kicker) {
  margin: 10px 0 0;
  color: #c2cdd8;
  font-size: 0.78rem;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
  }

  .desktop-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    z-index: 60;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: 0 18px 45px rgba(5, 21, 38, 0.18);
  }

  .desktop-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .desktop-nav a {
    padding: 13px 14px;
    border-radius: 4px;
  }

  .desktop-nav a:hover,
  .desktop-nav a:focus-visible {
    background: rgba(13, 143, 134, 0.09);
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .mobile-nav-contact {
    display: inline-flex;
    margin-top: 6px;
    color: var(--white) !important;
    background: var(--teal);
  }

  .site-header > .button {
    justify-self: end;
  }

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

  .executive-card {
    max-width: 620px;
  }

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

  .proof-item:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .expertise-card:first-child {
    grid-column: auto;
  }

  .dragon-grid,
  .operator-grid,
  .portfolio-hero-grid,
  .timeline-shell,
  .service-hero-grid,
  .service-problem-grid,
  .fit-grid,
  .work-hero-grid,
  .case-hero-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .workbook-card {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .operator-visual {
    min-height: 460px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-grid nav:last-child {
    grid-column: 1 / -1;
  }

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

  .result-grid article:nth-child(3),
  .result-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .brand-grid,
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .case-study {
    grid-template-columns: 1fr;
  }

  .case-study:nth-child(even) .case-study-media {
    order: 0;
  }

  .case-study-media,
  .case-study-media img {
    min-height: 430px;
    height: 430px;
  }

  .service-approach-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .timeline-intro {
    position: static;
  }

  .archive-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
    grid-template-columns: 146px 1fr auto;
    gap: 12px;
  }

  .brand,
  .brand img {
    width: 146px;
    height: 48px;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 0.67rem;
  }

  .site-header > .button {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 46px;
    padding-block: 72px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .executive-card {
    padding: 28px;
  }

  .executive-identity {
    justify-content: center;
  }

  .executive-portrait-frame {
    width: 160px;
    height: 190px;
  }

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

  .proof-item {
    min-height: 120px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-block: 78px;
  }

  .expertise-card {
    min-height: auto;
    padding: 30px;
  }

  .expertise-visual {
    height: 240px;
    margin: -30px -30px 24px;
  }

  .expertise-card:first-child .expertise-visual {
    height: 240px;
  }

  .expertise-card h3 {
    font-size: 2rem;
  }

  .dragon-section,
  .operator-section,
  .timeline-section {
    padding-block: 80px;
  }

  .dragon-grid {
    gap: 50px;
  }

  .workbook-card {
    grid-template-columns: 1fr;
  }

  .workbook-cover {
    min-height: 430px;
  }

  .workbook-details {
    padding: 34px 28px;
  }

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

  .engagement-card {
    padding: 32px 28px;
  }

  .operator-grid {
    gap: 52px;
  }

  .operator-visual {
    min-height: 400px;
  }

  .operator-visual .operator-photo {
    height: 400px;
  }

  .operator-visual-trademark {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .operator-visual-trademark .operator-photo {
    height: 100%;
  }

  .operator-caption {
    right: 30px;
    bottom: 28px;
    left: 30px;
    align-items: start;
    flex-direction: column;
  }

  .operator-caption strong {
    text-align: left;
  }

  .final-cta {
    padding-block: 75px;
  }

  .final-cta .button {
    width: 100%;
  }

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

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

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

  .portfolio-hero {
    padding-block: 75px;
  }

  .service-hero,
  .work-hero,
  .case-hero {
    padding-block: 75px;
  }

  .service-visual-frame,
  .service-visual-frame img {
    min-height: 360px;
    height: 360px;
  }

  .service-visual-caption {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }

  .portfolio-hero-grid {
    gap: 38px;
  }

  .portfolio-hero h1 {
    font-size: clamp(3.4rem, 16vw, 5.4rem);
  }

  .service-hero h1,
  .work-hero h1,
  .case-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .result-grid,
  .brand-grid,
  .archive-grid,
  .deliverable-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

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

  .case-hero-grid {
    gap: 38px;
  }

  .case-hero-stats,
  .case-card-grid {
    grid-template-columns: 1fr;
  }

  .case-study {
    min-height: 0;
  }

  .case-study-media,
  .case-study-media img {
    min-height: 280px;
    height: 280px;
  }

  .case-study-media-contain {
    padding: 22px;
  }

  .case-study-copy {
    padding: 38px 26px;
  }

  .case-study-copy dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .case-card {
    min-height: 0;
    padding: 30px 26px;
  }

  .organization-card {
    min-height: 132px;
    padding: 17px 13px 13px;
  }

  .organization-card img {
    height: 65px;
  }

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

  .related-links-inner,
  .related-links-inner > div {
    align-items: start;
    flex-direction: column;
  }

  .result-grid article {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .owned-brand-card {
    min-height: 280px;
  }

  .timeline li {
    grid-template-columns: 70px 1fr;
    gap: 16px;
  }

  .timeline-content {
    padding-left: 24px;
  }

  .timeline-media {
    grid-template-columns: 1fr;
  }

  .detailed-work-card {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .work-description h2 {
    font-size: 2.15rem;
  }

  .work-stats {
    grid-template-columns: 1fr;
  }
}

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

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