:root {
  --navy: #111f35;
  --navy-deep: #091426;
  --navy-soft: #263a55;
  --gold: #c99745;
  --gold-light: #e1bf7a;
  --ivory: #f7f3e9;
  --paper: #fcfaf5;
  --sand: #ddd2bf;
  --clay: #b88c69;
  --sage: #536f6c;
  --ink: #172135;
  --muted: #667081;
  --white: #ffffff;
  --line: rgba(17, 31, 53, 0.17);
  --shadow: 0 28px 70px rgba(9, 20, 38, 0.15);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

.section {
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(17, 31, 53, 0.11);
  background: rgba(252, 250, 245, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand span {
  display: grid;
  gap: 5px;
}

.brand strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: 0.13em;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 31px 0 28px;
  color: #435066;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 220ms ease;
}

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

.desktop-nav a[aria-current="page"] {
  color: var(--navy);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--gold);
  color: var(--navy-deep);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  padding: 17px 25px;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease,
    color 220ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 13px 17px;
  font-size: 10px;
}

.button-dark {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button-dark:hover {
  border-color: var(--navy-soft);
  background: var(--navy-soft);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
  color: var(--white);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.mobile-nav {
  display: none;
  margin-left: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 23px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 31px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--gold-light);
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  font-size: clamp(58px, 7.3vw, 112px);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 4.8vw, 70px);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 31px;
  letter-spacing: -0.02em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: gap 200ms ease, color 200ms ease;
}

.text-link:hover {
  gap: 22px;
  color: var(--gold);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: min(810px, calc(100vh - 88px));
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.home-hero-background,
.home-hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-background {
  object-fit: cover;
  object-position: center 43%;
  opacity: 0.81;
  animation: heroDrift 16s ease-out both;
}

.home-hero-wash {
  background:
    linear-gradient(90deg, rgba(6, 15, 29, 0.95) 0%, rgba(6, 15, 29, 0.78) 43%, rgba(6, 15, 29, 0.16) 77%),
    linear-gradient(0deg, rgba(6, 15, 29, 0.45), transparent 45%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 0 115px;
}

.home-hero h1 {
  max-width: 940px;
  margin-bottom: 25px;
  color: var(--white);
}

.home-hero h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.home-hero-content > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.45;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 43px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-index span {
  color: var(--gold-light);
}

.hero-index i {
  width: 66px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: start;
}

.intro-grid h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.large-copy {
  padding-top: 35px;
}

.large-copy p {
  margin-bottom: 34px;
  color: #425067;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.55;
}

.services-preview {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

.services-preview::before {
  position: absolute;
  top: 0;
  right: -230px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(201, 151, 69, 0.19);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(201, 151, 69, 0.04), 0 0 0 120px rgba(201, 151, 69, 0.025);
  content: "";
}

.section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.service-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 390px;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(252, 250, 245, 0.58);
  transition: background 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.service-card-top i {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 37px;
  font-style: normal;
}

.service-card h3 {
  max-width: 450px;
  margin-bottom: 20px;
}

.service-card p {
  max-width: 500px;
  min-height: 82px;
  margin-bottom: 28px;
  color: var(--muted);
}

.service-card > a {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-event {
  overflow: hidden;
  background: var(--paper);
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.77fr 1.23fr;
  gap: 85px;
  align-items: center;
}

.feature-copy {
  position: relative;
  z-index: 2;
}

.feature-copy h2 {
  margin-bottom: 30px;
}

.feature-copy p {
  color: var(--muted);
}

.feature-copy .feature-lead {
  color: var(--navy-soft);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.5;
}

.feature-copy .button {
  margin-top: 18px;
}

.feature-collage {
  position: relative;
  min-height: 660px;
}

.feature-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image-wide {
  top: 0;
  right: 0;
  width: 82%;
  height: 440px;
}

.feature-image-portrait {
  bottom: 0;
  left: 0;
  width: 40%;
  height: 410px;
  border: 10px solid var(--paper);
}

.feature-image-portrait img {
  object-position: 50% 18%;
}

.feature-mark {
  position: absolute;
  right: 4px;
  bottom: 20px;
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 76px;
  letter-spacing: -0.08em;
}

.invitation {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.invitation::before,
.invitation::after {
  position: absolute;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(201, 151, 69, 0.28);
  border-radius: 50%;
  content: "";
}

.invitation::before {
  top: -240px;
  left: -50px;
}

.invitation::after {
  right: -100px;
  bottom: -270px;
}

.invitation-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.invitation h2 {
  max-width: 800px;
  color: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 125px 0 110px;
  background: var(--ivory);
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 70px;
  align-items: end;
}

.page-hero-copy {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 30px;
}

.page-intro {
  max-width: 760px;
  margin-bottom: 0;
  color: #4a5669;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.1vw, 29px);
  line-height: 1.5;
}

.hero-seal {
  justify-self: end;
  display: grid;
  width: 260px;
  height: 260px;
  place-items: center;
  padding: 36px;
  border: 1px solid rgba(201, 151, 69, 0.45);
  border-radius: 50%;
  color: var(--gold);
  text-align: center;
}

.hero-seal span {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 95px;
  line-height: 0.7;
}

.hero-seal small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.8;
  text-transform: uppercase;
}

.motif-one {
  position: absolute;
  top: -210px;
  right: -100px;
  width: 630px;
  height: 630px;
  transform: rotate(22deg);
  border: 1px solid rgba(201, 151, 69, 0.14);
  border-radius: 38% 62% 52% 48%;
}

.page-hero-with-image {
  padding-bottom: 90px;
}

.page-hero-with-image .page-hero-grid {
  grid-template-columns: 0.88fr 0.72fr;
  align-items: center;
}

.page-hero-with-image h1 {
  font-size: clamp(56px, 6vw, 94px);
}

.page-hero-image {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero-image::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(225, 191, 122, 0.52);
  content: "";
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

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

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: center;
}

.story-image {
  position: relative;
  margin: 0;
}

.story-image::before {
  position: absolute;
  z-index: 0;
  top: -26px;
  right: -26px;
  width: 72%;
  height: 72%;
  border: 1px solid var(--gold);
  content: "";
}

.story-image img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.story-image figcaption {
  position: absolute;
  z-index: 2;
  right: -1px;
  bottom: -1px;
  max-width: 270px;
  padding: 20px 26px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
}

.story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.story-copy strong,
.leadership-copy strong {
  color: var(--navy);
}

.founder-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
}

.founder-section::after {
  position: absolute;
  top: -220px;
  right: -150px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(201, 151, 69, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(201, 151, 69, 0.04),
    0 0 0 130px rgba(201, 151, 69, 0.025);
  content: "";
}

.founder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.76fr 1.1fr;
  gap: 110px;
  align-items: center;
}

.founder-portrait {
  position: relative;
  margin: 0;
}

.founder-portrait::before {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 68%;
  height: 72%;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  content: "";
}

.founder-portrait img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(3, 10, 22, 0.32);
}

.founder-portrait figcaption {
  position: absolute;
  right: -1px;
  bottom: -1px;
  padding: 13px 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.founder-role {
  margin-bottom: 9px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.founder-profile h2 {
  margin-bottom: 31px;
  color: var(--white);
  font-size: clamp(62px, 7vw, 104px);
}

.founder-bio {
  max-width: 720px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
}

.founder-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.founder-disciplines span {
  padding: 9px 13px;
  border: 1px solid rgba(225, 191, 122, 0.34);
  color: rgba(255, 255, 255, 0.71);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.leadership-section {
  background: var(--ivory);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 0.3fr 0.85fr 1fr;
  gap: 55px;
  align-items: start;
}

.leadership-number {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 0.8;
}

.leadership-grid h2 {
  font-size: clamp(42px, 4vw, 61px);
}

.leadership-copy p {
  color: #566174;
  font-size: 17px;
}

.values-section,
.process-section {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.section-heading-light h2,
.values-grid h3,
.process-grid h3 {
  color: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.values-grid article {
  min-height: 330px;
  padding: 42px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.values-grid span,
.process-grid span {
  display: block;
  margin-bottom: 62px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.values-grid h3 {
  font-size: 30px;
}

.split-cta {
  background: var(--gold-light);
}

.split-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 90px;
  align-items: center;
}

.split-cta-inner h2 {
  margin-bottom: 0;
}

.split-cta-inner p {
  color: rgba(17, 31, 53, 0.78);
  font-size: 18px;
}

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

.service-detail-list {
  border-top: 1px solid var(--line);
}

.service-detail {
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.72fr;
  gap: 58px;
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail-number {
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.service-detail-number i {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 55px;
  font-style: normal;
}

.service-detail-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 4vw, 62px);
}

.service-detail-lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-detail ul {
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding: 12px 0 12px 23px;
  border-bottom: 1px solid var(--line);
  color: #536074;
  font-size: 14px;
}

.service-detail li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--gold);
  content: "";
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.process-grid li {
  min-height: 330px;
  padding: 38px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid h3 {
  font-size: 29px;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.service-cta,
.portfolio-cta {
  background: var(--ivory);
}

.service-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.service-cta-inner h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.service-cta-inner .button {
  flex: 0 0 auto;
}

.project-intro {
  background: var(--paper);
}

.project-intro-grid {
  display: grid;
  grid-template-columns: 0.45fr 1.1fr 0.68fr;
  gap: 62px;
  align-items: start;
}

.project-label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-intro h2 {
  margin-bottom: 23px;
}

.project-lead {
  color: var(--navy-soft);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.48;
}

.project-intro-grid > p {
  padding-top: 46px;
  color: var(--muted);
}

.portfolio-gallery {
  padding-bottom: 120px;
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  align-items: start;
}

.gallery-item {
  margin: 0;
}

.gallery-wide {
  grid-column: 1 / span 8;
}

.gallery-tall {
  grid-column: 9 / span 4;
  grid-row: span 2;
}

.gallery-standard {
  grid-column: 2 / span 7;
}

.gallery-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}

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

.gallery-wide .gallery-image-wrap,
.gallery-standard .gallery-image-wrap {
  aspect-ratio: 3 / 2;
}

.gallery-tall .gallery-image-wrap {
  aspect-ratio: 2 / 3;
}

.gallery-tall img {
  object-position: 48% center;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-image-wrap span {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.gallery-item figcaption {
  padding: 16px 0 30px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
}

.project-note {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.68);
}

.project-note-inner {
  display: grid;
  grid-template-columns: 0.38fr 1.1fr 0.55fr;
  gap: 70px;
  align-items: center;
}

.project-note blockquote {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.22;
}

.project-note-inner > p:last-child {
  font-size: 15px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.contact-details {
  position: sticky;
  top: 130px;
}

.contact-details h2 {
  font-size: clamp(42px, 4vw, 60px);
}

.contact-details > p:not(.eyebrow):not(.response-note) {
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 17px;
}

.contact-method {
  display: grid;
  gap: 9px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.contact-method > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-method a {
  width: max-content;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 28px);
}

.contact-method a:hover {
  color: var(--gold);
}

.contact-method-phone img {
  width: min(330px, 100%);
  height: auto;
}

.response-note {
  max-width: 370px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.form-panel {
  padding: 52px;
  background: var(--ivory);
  box-shadow: 0 20px 60px rgba(17, 31, 53, 0.08);
}

.form-kicker {
  margin-bottom: 38px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 31px;
}

.contact-form {
  display: grid;
}

.contact-form > label:not(.human-check) {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form > label span {
  color: var(--gold);
}

.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 27px;
  border: 1px solid rgba(17, 31, 53, 0.25);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.66);
  color: var(--navy);
  padding: 15px 17px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form input[type="email"],
.contact-form select {
  min-height: 55px;
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 151, 69, 0.13);
}

.contact-form ::placeholder {
  color: #8b91a0;
}

.human-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0 25px;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
}

.human-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.human-check span {
  color: inherit;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 16px 0 0;
  color: #727c8c;
  font-size: 11px;
  line-height: 1.55;
}

.form-status {
  margin: 15px 0 0;
  padding: 12px 14px;
  font-size: 13px;
}

.form-status-error {
  background: #f6e5df;
  color: #783c31;
}

.form-status-ready {
  background: #e4eee9;
  color: #2d5b4d;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

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

.policy-copy {
  max-width: 820px;
}

.policy-copy h2 {
  margin-top: 60px;
  margin-bottom: 16px;
  font-size: 40px;
}

.policy-copy h2:first-child {
  margin-top: 0;
}

.policy-copy p {
  color: var(--muted);
  font-size: 17px;
}

.policy-copy a {
  border-bottom: 1px solid var(--gold);
  color: var(--navy);
}

.site-footer {
  padding: 90px 0 28px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.5fr 0.8fr;
  gap: 90px;
  padding-bottom: 72px;
}

.brand-footer img {
  border-radius: 50%;
  background: var(--paper);
  mix-blend-mode: normal;
}

.brand-footer strong {
  color: var(--white);
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand > p {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-display);
  font-size: 22px;
}

.footer-label {
  margin-bottom: 25px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-phone {
  width: min(270px, 100%);
  height: auto;
  margin-top: 9px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 25px;
}

.reveal {
  animation: revealUp 760ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.reveal-delay {
  animation-delay: 130ms;
}

@keyframes revealUp {
  from {
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.055);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 20px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .header-cta {
    display: none;
  }

  .feature-layout,
  .story-grid,
  .contact-grid {
    gap: 55px;
  }

  .leadership-grid {
    grid-template-columns: 0.22fr 0.9fr 1fr;
    gap: 35px;
  }

  .project-intro-grid {
    grid-template-columns: 0.4fr 1fr;
  }

  .project-intro-grid > p {
    grid-column: 2;
    padding-top: 0;
  }

  .project-note-inner {
    grid-template-columns: 0.3fr 1fr;
  }

  .project-note-inner > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 840px) {
  .shell {
    width: min(100% - 40px, 680px);
  }

  .section {
    padding: 88px 0;
  }

  .desktop-nav {
    display: none;
  }

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

  .mobile-nav summary {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    list-style: none;
    text-transform: uppercase;
  }

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

  .mobile-nav summary i,
  .mobile-nav summary i::before {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--navy);
    content: "";
  }

  .mobile-nav summary i::before {
    transform: translateY(6px);
  }

  .mobile-nav[open] summary i {
    transform: translateY(3px) rotate(45deg);
  }

  .mobile-nav[open] summary i::before {
    transform: rotate(-90deg);
  }

  .mobile-nav nav {
    position: absolute;
    top: 43px;
    right: 0;
    display: grid;
    width: min(310px, calc(100vw - 40px));
    padding: 16px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .mobile-nav nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
  }

  .mobile-nav nav a[aria-current="page"] {
    color: var(--gold);
  }

  .home-hero {
    min-height: 720px;
  }

  .home-hero-background {
    object-position: 58% center;
  }

  .home-hero-wash {
    background: linear-gradient(90deg, rgba(6, 15, 29, 0.94), rgba(6, 15, 29, 0.45));
  }

  .home-hero-content {
    padding: 95px 0 130px;
  }

  .hero-index {
    right: 20px;
    left: 20px;
    justify-content: flex-end;
  }

  .intro-grid,
  .feature-layout,
  .story-grid,
  .page-hero-grid,
  .page-hero-with-image .page-hero-grid,
  .contact-grid,
  .split-cta-inner {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 30px;
  }

  .large-copy {
    padding-top: 0;
  }

  .service-card {
    min-height: 360px;
    padding: 32px;
  }

  .feature-layout {
    gap: 55px;
  }

  .feature-collage {
    min-height: 580px;
  }

  .page-hero {
    padding: 90px 0;
  }

  .hero-seal {
    display: none;
  }

  .page-hero-image {
    max-height: 650px;
    aspect-ratio: 4 / 3;
  }

  .story-image {
    margin-right: 25px;
  }

  .founder-grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 55px;
  }

  .leadership-grid {
    grid-template-columns: 0.2fr 1fr;
  }

  .leadership-copy {
    grid-column: 2;
  }

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

  .values-grid article {
    min-height: auto;
  }

  .split-cta-inner {
    gap: 35px;
  }

  .service-detail {
    grid-template-columns: 0.2fr 1fr;
  }

  .service-detail ul {
    grid-column: 2;
  }

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

  .service-cta-inner {
    display: grid;
    gap: 35px;
  }

  .project-intro-grid,
  .project-note-inner {
    grid-template-columns: 1fr;
  }

  .project-intro-grid > p,
  .project-note-inner > p:last-child {
    grid-column: auto;
    padding-top: 0;
  }

  .gallery-wide {
    grid-column: 1 / span 8;
  }

  .gallery-tall {
    grid-column: 9 / span 4;
  }

  .gallery-standard {
    grid-column: 2 / span 7;
  }

  .contact-details {
    position: static;
  }

  .form-panel {
    padding: 42px;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 74px;
  }

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

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 7px;
  }

  .mobile-nav summary span {
    display: none;
  }

  h1 {
    font-size: clamp(50px, 15vw, 74px);
  }

  h2 {
    font-size: clamp(38px, 11vw, 53px);
  }

  .home-hero {
    min-height: 690px;
  }

  .home-hero-background {
    object-position: 61% center;
  }

  .home-hero-wash {
    background: linear-gradient(90deg, rgba(6, 15, 29, 0.95), rgba(6, 15, 29, 0.58));
  }

  .home-hero-content {
    padding: 75px 0 140px;
  }

  .home-hero-content > p:not(.eyebrow) {
    font-size: 19px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-index small {
    display: none;
  }

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

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

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

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

  .feature-collage {
    min-height: 470px;
  }

  .feature-image-wide {
    width: 92%;
    height: 320px;
  }

  .feature-image-portrait {
    width: 46%;
    height: 280px;
  }

  .feature-mark {
    font-size: 48px;
  }

  .page-hero {
    padding: 72px 0;
  }

  .page-hero-with-image h1 {
    font-size: clamp(48px, 13vw, 68px);
  }

  .page-hero-image {
    aspect-ratio: 4 / 5;
  }

  .story-image {
    margin-right: 14px;
  }

  .story-image::before {
    top: -14px;
    right: -14px;
  }

  .story-image figcaption {
    max-width: 235px;
    padding: 16px 20px;
    font-size: 15px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .founder-portrait {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .founder-profile h2 {
    font-size: clamp(56px, 17vw, 82px);
  }

  .founder-bio {
    font-size: 20px;
  }

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

  .leadership-number {
    font-size: 110px;
  }

  .leadership-copy {
    grid-column: auto;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 58px 0;
  }

  .service-detail-number {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .service-detail-number i {
    font-size: 40px;
  }

  .service-detail ul {
    grid-column: auto;
  }

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

  .process-grid li {
    min-height: auto;
  }

  .values-grid span,
  .process-grid span {
    margin-bottom: 35px;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    margin-bottom: 15px;
  }

  .gallery-tall .gallery-image-wrap {
    aspect-ratio: 4 / 5;
  }

  .project-note blockquote {
    font-size: 38px;
  }

  .form-panel {
    padding: 30px 22px;
  }

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

  .footer-contact {
    grid-column: auto;
  }

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

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

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