:root {
  --bg: #0b0b0d;
  --bg-alt: #121216;
  --panel: #17181d;
  --panel-soft: rgba(255, 255, 255, 0.03);
  --surface-light: #f2efe8;
  --surface-light-2: #dfd8cb;
  --text: #f8f5ef;
  --text-soft: #c8c1b3;
  --text-dark: #131316;
  --text-dark-soft: #625d55;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(19, 19, 22, 0.14);
  --accent: #d8d0c2;
  --accent-strong: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  --container: 1440px;
  --header-height: 96px;
  --header-height-small: 74px;
  color-scheme: dark;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #09090b 0%, #121217 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-height);
  transition: height 180ms ease, background-color 180ms ease, box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 10, 0.42);
  backdrop-filter: blur(0);
  transition: inherit;
}

.site-header.is-scrolled::before,
.site-header.is-solid::before {
  background: rgba(9, 9, 12, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  height: var(--header-height-small);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-shell {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 4.4rem;
  height: 4.4rem;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-copy,
.site-nav a,
.nav-cta,
.eyebrow,
.footer-title,
h1,
h2,
h3,
.button,
.stat-label,
.project-overlay p,
.section-link,
.service-index,
.stars {
  font-family: "Arial Narrow", "Franklin Gothic Medium Cond", Impact, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-name {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.brand-subtitle {
  color: var(--accent-strong);
  font-size: 1.08rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-strong);
}

.nav-cta {
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease,
    box-shadow 220ms ease, transform 220ms ease;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  border-color: #e5dfd4;
  background: #e5dfd4;
  color: #0b0b0c;
  box-shadow: 0 10px 30px rgba(229, 223, 212, 0.2);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.15rem;
  height: 1px;
  background: #fff;
}

.hero {
  position: relative;
  margin-top: calc(var(--header-height) * -1);
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 8, 0.94) 0%, rgba(6, 6, 8, 0.88) 26%, rgba(6, 6, 8, 0.58) 52%, rgba(6, 6, 8, 0.14) 72%, rgba(6, 6, 8, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.52));
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: grayscale(100%) contrast(1.05);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 8.8rem;
  padding-bottom: 4rem;
}

.hero-copy {
  max-width: 30rem;
  display: grid;
  align-content: center;
  gap: 0.95rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.hero-kicker {
  margin: 0;
  color: #a9a399;
  font-family: "Arial Narrow", "Franklin Gothic Medium Cond", Impact, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.hero-title {
  display: grid;
  gap: 0.15rem;
  max-width: 8ch;
  margin: 0;
}

.hero-title span {
  display: block;
}

.eyebrow-dark {
  color: #5e584f;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 7vw, 6.3rem);
  line-height: 0.88;
  color: #d4cec4;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.inner-title {
  max-width: 12ch;
  font-size: clamp(2.9rem, 5vw, 5rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  line-height: 0.96;
  color: inherit;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.05;
}

.lede,
.section-copy p,
.footer-summary,
.service-card p,
.testimonial-card p,
.reviewer span,
.cta-copy p,
label,
input,
select,
textarea,
.stat-copy,
.footer-links li {
  font-size: 1rem;
  line-height: 1.75;
}

.lede {
  max-width: 22rem;
  margin-top: 0;
  color: #beb7ab;
  font-size: 0.95rem;
  line-height: 1.7;
}
.hero-actions,
.inline-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #f4efe5, #d4cbbd);
  color: var(--text-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.button-tertiary {
  border-color: rgba(19, 19, 22, 0.18);
  color: var(--text-dark);
}


.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: 100%;
}

.about-section,
.cta-section,
.site-footer,
.inner-hero {
  background: transparent;
}

.partners-section,
.testimonials-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.66)),
    linear-gradient(135deg, var(--surface-light) 0%, var(--surface-light-2) 100%);
  color: var(--text-dark);
}

.image-frame,
.project-card,
.service-card,
.testimonial-card,
.cta-panel,
.contact-form,
.gallery-item img {
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.section-copy {
  display: grid;
  gap: 1.2rem;
}

.section-copy p {
  color: var(--text-soft);
}

.about-section {
  padding-top: 0.75rem;
  padding-bottom: 3.25rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(12, 12, 15, 0.96), rgba(12, 12, 15, 0.92));
  overflow: hidden;
}

.about-media-frame {
  min-height: 26rem;
}

.about-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.02);
}

.about-panel {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(1.8rem, 3vw, 3rem);
  background:
    linear-gradient(180deg, rgba(16, 16, 20, 0.96), rgba(16, 16, 20, 0.98)),
    radial-gradient(circle at 84% 52%, rgba(255, 255, 255, 0.04), transparent 24%);
}

.about-panel::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 11rem;
  height: 11rem;
  transform: translateY(-50%);
  background-image: url("../assets/logos/lily-coe-logo.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  filter: grayscale(100%) brightness(1.2);
  pointer-events: none;
}

.about-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  max-width: 21rem;
}

.about-copy .eyebrow {
  margin-bottom: 0;
  color: #9f998e;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.about-copy h2 {
  max-width: 8.5ch;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  color: #d8d1c7;
}

.about-copy p {
  max-width: 19rem;
  color: #9d978c;
  font-size: 0.88rem;
  line-height: 1.7;
}

.about-actions {
  margin-top: 0.25rem;
}

.about-story-button {
  min-height: 2.3rem;
  padding: 0.6rem 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-link {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.work-section {
  padding-top: 1.2rem;
  padding-bottom: 0.8rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.03), transparent 25%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.98), rgba(8, 8, 10, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.featured-topbar .eyebrow {
  margin: 0;
  font-size: 0.82rem;
  color: #b9b2a7;
}

.featured-link {
  color: #bfb8ab;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
}

.featured-link::after {
  content: " ->";
}

.marquee {
  overflow: hidden;
  padding: 0.5rem 0 1rem;
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-left 36s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16rem;
  padding: 1.15rem 1.4rem;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.36);
  color: #201f24;
  font-family: "Arial Narrow", "Franklin Gothic Medium Cond", Impact, sans-serif;
  letter-spacing: 0.12em;
}

.project-grid,
.service-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}

.project-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.project-card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 180ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 0.95rem 0.85rem;
  background: linear-gradient(180deg, transparent 8%, rgba(0, 0, 0, 0.9) 100%);
  text-align: left;
}

.project-overlay p {
  margin-top: 0.6rem;
  color: #c0b9ae;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
}

.project-overlay h3 {
  max-width: 7ch;
  color: #cfc8be;
  font-size: clamp(1.9rem, 2.5vw, 3rem);
  line-height: 0.92;
}

.services-block {
  padding-top: 1.35rem;
  text-align: center;
}

.services-eyebrow {
  margin: 0 0 0.55rem;
  color: #bab3a8;
  font-size: 0.78rem;
}

.services-title {
  max-width: none;
  margin: 0 auto 1.9rem;
  color: #d2cbc0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.94;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.service-card {
  padding: 1.4rem 1.35rem 0.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  box-shadow: none;
}

.service-card p {
  max-width: 15rem;
  margin: 0.95rem auto 0;
  color: #a39c90;
  font-size: 0.88rem;
  line-height: 1.75;
}

.service-card h3 {
  color: #d0c9be;
  font-size: 1.2rem;
}

.service-card:first-child {
  border-left: 0;
}

.bts-section {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0.99), rgba(7, 7, 9, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bts-topbar {
  margin-bottom: 0.75rem;
}

.bts-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.bts-card {
  margin: 0;
  min-height: 11rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.bts-card:first-child {
  border-left: 0;
}

.bts-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.partners-trust-block {
  padding: 1.2rem 0 0.35rem;
  text-align: center;
}

.trust-title {
  max-width: 10ch;
  margin-bottom: 1.6rem;
}

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

.trust-quote {
  padding: 1.1rem 1.6rem 1.4rem;
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-quote:first-child {
  border-left: 0;
}

.trust-quote p {
  color: #9d968a;
  font-size: 0.92rem;
  line-height: 1.75;
}

.trust-quote p::before {
  content: "“";
  display: block;
  margin-bottom: 0.6rem;
  color: #a9a296;
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 0.6;
}

.trust-quote h3 {
  margin-top: 0.95rem;
  color: #cfc8bd;
  font-size: 1.2rem;
}

.trust-quote span {
  display: block;
  margin-top: 0.4rem;
  color: #817a6f;
  font-family: "Arial Narrow", "Franklin Gothic Medium Cond", Impact, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.45rem;
  padding-top: 0.45rem;
}

.trust-logos span {
  color: #7e776c;
  font-family: "Arial Narrow", "Franklin Gothic Medium Cond", Impact, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.1;
}

.vision-section {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.vision-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.98), rgba(9, 9, 11, 0.98));
  overflow: hidden;
}

.vision-media {
  position: relative;
  min-height: 21rem;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.18), rgba(8, 8, 10, 0.08)),
    rgba(12, 12, 15, 0.94);
}

.vision-media::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  top: 50%;
  width: 10rem;
  height: 10rem;
  transform: translateY(-50%);
  background-image: url("../assets/logos/lily-coe-logo.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: grayscale(100%) brightness(1.15);
  pointer-events: none;
  z-index: 1;
}

.vision-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 28%;
  filter: grayscale(100%);
}

.vision-panel {
  display: flex;
  align-items: center;
  padding: clamp(1.8rem, 3vw, 3rem);
  background:
    linear-gradient(180deg, rgba(11, 11, 14, 0.98), rgba(9, 9, 12, 0.98)),
    radial-gradient(circle at 84% 50%, rgba(255, 255, 255, 0.04), transparent 20%);
}

.vision-copy {
  display: grid;
  gap: 0.9rem;
  max-width: 23rem;
}

.vision-copy .eyebrow {
  margin-bottom: 0;
  color: #b2ab9f;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

.vision-copy h2 {
  max-width: 8ch;
  color: #d6cfc4;
  font-size: clamp(2.65rem, 4vw, 4.15rem);
  line-height: 0.94;
}

.vision-copy p {
  max-width: 21rem;
  color: #aaa397;
  font-size: 0.96rem;
  line-height: 1.68;
}

.vision-signature {
  margin-top: 0.25rem;
  color: #d2cbc0 !important;
  font-family: "Arial Narrow", "Franklin Gothic Medium Cond", Impact, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.55rem !important;
  line-height: 1 !important;
}

.vision-role {
  color: #8f887d !important;
  font-family: "Arial Narrow", "Franklin Gothic Medium Cond", Impact, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem !important;
  line-height: 1.4 !important;
}

.cta-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 4rem);
  width: 100%;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(10, 10, 12, 0.92);
}

.cta-copy {
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

label {
  display: grid;
  gap: 0.45rem;
  color: #f3eee4;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
}

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

.form-success {
  color: var(--accent);
}

.site-footer {
  padding-top: 0.8rem;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.98), rgba(8, 8, 10, 0.98)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 26%);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  align-items: center;
  gap: 1.25rem;
  min-height: 12rem;
  padding: 1rem 1.1rem 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 14, 17, 0.9), rgba(14, 14, 17, 0.9)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.035) 50%, rgba(255, 255, 255, 0.035) 75%, transparent 75%, transparent),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.02) 75%, transparent 75%, transparent);
  background-size: auto, 24px 24px, 24px 24px;
}

.footer-contact-block,
.footer-meta-block {
  display: grid;
  gap: 1rem;
}

.footer-detail {
  display: grid;
  gap: 0.25rem;
}

.footer-label {
  color: #9b9488;
  font-family: "Arial Narrow", "Franklin Gothic Medium Cond", Impact, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.footer-detail a,
.footer-location span {
  color: #cec7bc;
  font-size: 0.98rem;
  line-height: 1.5;
}

.footer-cta-block {
  display: grid;
  justify-items: center;
  text-align: center;
}

.footer-cta-eyebrow {
  margin-bottom: 0.35rem;
  color: #a39b90;
  font-size: 0.72rem;
}

.footer-cta-block h2 {
  max-width: 11ch;
  margin: 0 auto 1rem;
  color: #d8d1c6;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.94;
}

.footer-cta-button {
  min-height: 2.55rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
}

.footer-meta-block {
  justify-items: end;
}

.footer-location {
  display: grid;
  gap: 0.3rem;
  text-align: right;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
}

.footer-socials a {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #cfc8bd;
  font-family: "Arial Narrow", "Franklin Gothic Medium Cond", Impact, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bar-inner {
  min-height: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  color: #878075;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bar-inner p {
  margin: 0;
}

.footer-crest {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.72;
}

.footer-crest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.footer-bar a {
  color: #b8b1a5;
}

.footer-bar-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
}

.site-credit {
  color: #878075;
  white-space: nowrap;
}

.site-credit a {
  color: #cfc8bd;
  transition: color 180ms ease;
}

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

.inner-page .site-header {
  margin-bottom: 0;
}

.inner-hero {
  padding-top: 9rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
}

.editorial-grid article {
  padding: 1.8rem;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.36);
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes gallery-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes gallery-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  .hero-layout,
  .split-layout,
  .cta-panel,
  .footer-main,
  .editorial-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-layout {
    grid-template-columns: 1fr;
  }

  .vision-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1.25rem;
    left: 1.25rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 12, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .nav-cta {
    border: 0;
  }

  .split-layout,
  .cta-panel,
  .service-grid,
  .footer-main,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding-top: 9rem;
    min-height: 38rem;
  }

  .hero-copy {
    max-width: 24rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(6, 6, 8, 0.82) 0%, rgba(6, 6, 8, 0.72) 42%, rgba(6, 6, 8, 0.88) 100%);
  }

  .hero-media img {
    object-position: 70% center;
  }

  .about-panel {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .about-panel::after {
    width: 8rem;
    height: 8rem;
    right: 0.5rem;
  }

  .vision-panel {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .vision-media {
    min-height: 18rem;
  }

  .vision-media::before {
    width: 7rem;
    height: 7rem;
    left: 0.75rem;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .featured-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .bts-grid,
  .trust-grid,
  .trust-logos {
    grid-template-columns: 1fr;
  }

  .bts-card,
  .trust-quote {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .bts-card:first-child,
  .trust-quote:first-child {
    border-top: 0;
  }

  .service-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 1.2rem;
  }

  .service-card:first-child {
    border-top: 0;
  }

  .testimonial-track {
    min-height: 26rem;
  }

  .slider-button {
    width: 100%;
    max-width: 7rem;
  }

  .gallery-item {
    width: min(58vw, 17rem);
  }

  .footer-bar-inner {
    padding: 1rem 0;
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }

  .footer-meta-block {
    justify-items: start;
  }

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

  .footer-bar-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 0.75rem;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

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

  .hero-kicker {
    font-size: 0.92rem;
    letter-spacing: 0.18em;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .brand img {
    width: 3.8rem;
    height: 3.8rem;
  }

  .gallery-item {
    width: 70vw;
  }
}

/* Homepage visual match: the supplied full-page Lily Coe composition is the source of truth. */
.home-page {
  --reference-white: #dadada;
  --reference-copy: #a6a6a6;
  --reference-line: rgba(255, 255, 255, 0.2);
  background: #08090a;
  color: var(--reference-white);
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
}

.home-page .container {
  width: min(100%, 1440px);
  max-width: 1440px;
  margin-inline: auto;
}

.home-page main > section,
.home-page .site-header,
.home-page .site-footer {
  width: 100%;
  max-width: none;
}

.home-page .brand-copy {
  display: none;
}

.home-page .site-header {
  height: 96px;
}

.home-page .site-header::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent);
}

.home-page .site-header.is-scrolled {
  height: 72px;
}

.home-page .nav-shell {
  padding-inline: clamp(24px, 3.6vw, 52px);
}

.home-page .brand img {
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  filter: grayscale(100%) contrast(1.05);
}

.home-page .site-nav {
  flex: 1;
  justify-content: center;
  gap: clamp(24px, 3vw, 46px);
  margin-left: clamp(30px, 5vw, 78px);
}

.home-page .site-nav a,
.home-page .eyebrow,
.home-page .button,
.home-page h1,
.home-page h2,
.home-page h3,
.home-page .project-overlay p,
.home-page .section-link,
.home-page .footer-label {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
}

.home-page .site-nav a {
  color: #d6d6d6;
  font-size: 13px;
  letter-spacing: 0.22em;
}

.home-page .site-nav .nav-cta {
  margin-left: auto;
  padding: 13px 30px;
  border-color: rgba(255, 255, 255, 0.34);
}

.home-page .hero {
  min-height: clamp(650px, 52.8vw, 760px);
  border-bottom: 1px solid var(--reference-line);
}

.home-page .hero::before {
  background:
    linear-gradient(90deg, rgba(3, 3, 4, 0.58) 0%, rgba(3, 3, 4, 0.31) 40%, transparent 64%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 68%, rgba(0, 0, 0, 0.38) 100%);
}

.home-page .hero-media img {
  object-position: center center;
  filter: grayscale(100%) contrast(1.07) brightness(0.9);
}

.home-page .hero-layout {
  min-height: clamp(650px, 52.8vw, 760px);
  padding: 150px clamp(48px, 6.3vw, 92px) 72px;
}

.home-page .hero-copy {
  max-width: 470px;
  gap: 14px;
}

.home-page .hero-title {
  max-width: 8ch;
  gap: 0;
  color: #d6d6d6;
  font-size: clamp(68px, 6.2vw, 90px);
  line-height: 0.82;
  letter-spacing: 0.015em;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.55);
}

.home-page .hero-kicker {
  color: #b8b8b8;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 24px;
  letter-spacing: 0.21em;
}

.home-page .lede {
  max-width: 365px;
  color: #bebebe;
  font-size: 13px;
  line-height: 1.72;
}

.home-page .hero-actions {
  gap: 18px;
  margin-top: 18px;
}

.home-page .button {
  min-height: 48px;
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.18em;
  gap: 20px;
}

.home-page .button-primary {
  background: #dedede;
  color: #0c0c0c;
}

.home-page .button-secondary {
  background: rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 255, 255, 0.36);
}

.home-page .about-section {
  padding: 0;
  border-bottom: 1px solid var(--reference-line);
  background: #0b0c0d;
}

.home-page .about-layout {
  min-height: 430px;
  grid-template-columns: 52% 48%;
  padding-inline: 0;
  border: 0;
}

.home-page .about-media-frame {
  min-height: 430px;
}

.home-page .about-media-frame img {
  object-position: center 56%;
  filter: grayscale(100%) contrast(1.13) brightness(0.72);
}

.home-page .about-panel {
  padding: 42px 56px;
  background: #0a0b0c;
}

.home-page .about-panel::after {
  width: 250px;
  height: 250px;
  right: 28px;
  opacity: 0.075;
  border-radius: 50%;
}

.home-page .about-copy {
  max-width: 420px;
  gap: 14px;
}

.home-page .about-copy .eyebrow,
.home-page .featured-topbar .eyebrow,
.home-page .services-eyebrow,
.home-page .vision-copy .eyebrow,
.home-page .footer-cta-eyebrow {
  color: #bdbdbd;
  font-size: 13px;
  letter-spacing: 0.2em;
}

.home-page .about-copy h2 {
  max-width: 12ch;
  color: #cfcfcf;
  font-size: 46px;
  line-height: 0.9;
}

.home-page .about-copy h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.3);
}

.home-page .about-copy p {
  max-width: 390px;
  color: #aaa;
  font-size: 12px;
  line-height: 1.7;
}

.home-page .about-story-button {
  min-height: 40px;
  padding: 9px 16px;
}

.home-page .work-section {
  padding: 26px 0 28px;
  background: #08090a;
  border-top: 0;
}

.home-page .work-section > .container {
  padding-inline: clamp(36px, 5.5vw, 80px);
}

.home-page .featured-topbar {
  margin-bottom: 16px;
}

.home-page .featured-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #bdbdbd;
  font-size: 13px;
}

.home-page .featured-link::after {
  content: none;
}

.home-page .project-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.home-page .project-card {
  min-height: 310px;
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.home-page .project-card img {
  filter: grayscale(100%) contrast(1.08) brightness(0.78);
}

.home-page .poster-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  background: #090a0b;
}

.home-page .poster-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.02) brightness(0.78);
}

.home-page .poster-card:hover img {
  filter: grayscale(70%) contrast(1.02) brightness(0.9);
}

.home-page .poster-card .project-overlay {
  position: static;
  display: grid;
  min-height: 106px;
  align-content: end;
  padding: 17px 14px 14px;
  background: #090a0b;
}

.home-page .poster-card .project-overlay h3 {
  max-width: none;
  color: #d0d0d0;
  font-size: clamp(24px, 2.1vw, 31px);
  line-height: 0.92;
  letter-spacing: 0.055em;
}

.home-page .poster-card .project-overlay p {
  margin-top: 8px;
  color: #9f9f9f;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.home-page .project-overlay {
  padding: 45px 20px 18px;
}

.home-page .project-overlay h3 {
  max-width: 8ch;
  color: #d0d0d0;
  font-size: 43px;
  line-height: 0.88;
  letter-spacing: 0.08em;
}

.home-page .project-overlay p {
  color: #c7c7c7;
  font-size: 13px;
  letter-spacing: 0.16em;
}

.home-page .services-block {
  padding-top: 28px;
}

.home-page .services-title {
  margin-bottom: 22px;
  color: #d0d0d0;
  font-size: 52px;
  letter-spacing: 0.04em;
}

.home-page .service-card {
  min-height: 205px;
  padding: 4px 26px 12px;
  border-left-color: rgba(255, 255, 255, 0.32);
}

.home-page .service-icon {
  display: block;
  margin-bottom: 18px;
  color: #9d9d9d;
  font-size: 43px;
  line-height: 1;
}

.home-page .service-card h3 {
  color: #cecece;
  font-size: 20px;
  letter-spacing: 0.16em;
}

.home-page .service-card p {
  max-width: 245px;
  margin-top: 11px;
  color: #9f9f9f;
  font-size: 12px;
  line-height: 1.68;
}

.home-page .vision-section {
  padding: 0;
  border-top: 1px solid var(--reference-line);
  border-bottom: 1px solid var(--reference-line);
  background: #08090a;
}

.home-page .vision-layout {
  min-height: 320px;
  grid-template-columns: 50% 50%;
  padding-inline: 0;
  border: 0;
}

.home-page .vision-media {
  min-height: 320px;
  background: #050505;
}

.home-page .vision-media::before {
  width: 220px;
  height: 220px;
  left: 36px;
  opacity: 0.075;
  border-radius: 50%;
}

.home-page .vision-media img {
  object-position: 38% 24%;
  filter: grayscale(100%) contrast(1.04) brightness(0.84);
}

.home-page .vision-panel {
  padding: 34px 52px;
  background: #08090a;
}

.home-page .vision-copy {
  max-width: 430px;
  gap: 9px;
}

.home-page .vision-copy h2 {
  max-width: 9ch;
  color: #d2d2d2;
  font-size: 48px;
  line-height: 0.9;
}

.home-page .vision-copy p {
  max-width: 420px;
  color: #a7a7a7;
  font-size: 12px;
  line-height: 1.55;
}

.home-page .vision-signature {
  margin-top: 5px;
  color: #d0d0d0 !important;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 21px !important;
}

.home-page .vision-signature::before {
  content: "\2014  ";
}

.home-page .vision-role {
  padding-left: 20px;
  max-width: 360px;
  font-size: 10px !important;
}

.home-page .leadership-section {
  padding: 0;
  border-bottom: 1px solid var(--reference-line);
  background: #070809;
}

.home-page .leadership-layout {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 320px;
  padding-inline: 0;
  overflow: hidden;
}

.home-page .leadership-panel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 34px clamp(36px, 4.5vw, 64px);
  background: #070809;
}

.home-page .leadership-copy {
  display: grid;
  gap: 9px;
  max-width: 410px;
}

.home-page .leadership-copy .eyebrow {
  margin-bottom: 0;
  color: #bdbdbd;
  font-size: 13px;
  letter-spacing: 0.2em;
}

.home-page .leadership-copy h2 {
  max-width: none;
  color: #d2d2d2;
  font-size: 50px;
  line-height: 0.9;
}

.home-page .leadership-role {
  margin-bottom: 6px;
  color: #c7c7c7 !important;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 20px !important;
  letter-spacing: 0.2em;
  line-height: 1 !important;
  text-transform: uppercase;
}

.home-page .leadership-copy p {
  max-width: 390px;
  color: #a7a7a7;
  font-size: 12px;
  line-height: 1.6;
}

.home-page .leadership-media {
  min-height: 320px;
  background: #050505;
}

.home-page .leadership-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 24%;
  filter: grayscale(100%) contrast(1.04) brightness(0.82);
}

.home-page .bts-section {
  padding: 14px 0 0;
  background: #08090a;
  border-top: 0;
}

.home-page .bts-section > .container {
  padding-inline: 0;
}

.home-page .bts-topbar {
  padding-inline: clamp(36px, 5.5vw, 80px);
  margin-bottom: 12px;
}

.home-page .bts-grid {
  min-height: 205px;
  border-right: 0;
  border-left: 0;
}

.home-page .bts-card {
  min-height: 205px;
}

.home-page .bts-card img {
  object-position: center;
  filter: grayscale(100%) contrast(1.08) brightness(0.75);
}

.home-page .partners-trust-block {
  padding: 22px clamp(38px, 6.5vw, 94px) 18px;
}

.home-page .trust-title {
  margin-bottom: 20px;
  color: #d0d0d0;
  font-size: 46px;
  line-height: 0.9;
}

.home-page .trust-quote {
  padding: 10px 35px 14px;
  border-left-color: rgba(255, 255, 255, 0.3);
}

.home-page .trust-quote p {
  color: #9f9f9f;
  font-size: 12px;
  line-height: 1.67;
}

.home-page .trust-quote p::before {
  float: left;
  margin: 4px 11px 10px 0;
  color: #8d8d8d;
  font-size: 50px;
}

.home-page .trust-quote h3 {
  margin-top: 11px;
  color: #c9c9c9;
  font-size: 18px;
}

.home-page .trust-quote span {
  margin-top: 2px;
  color: #878787;
  font-size: 10px;
}

.home-page .trust-logos {
  margin-top: 7px;
}

.home-page .trust-logos span {
  color: #777;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.home-page .site-footer {
  padding-top: 0;
  border-top: 1px solid var(--reference-line);
  background:
    linear-gradient(180deg, rgba(14, 14, 17, 0.94), rgba(10, 10, 12, 0.96)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.035) 50%, rgba(255, 255, 255, 0.035) 75%, transparent 75%, transparent),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.02) 75%, transparent 75%, transparent);
  background-size: auto, 20px 20px, 20px 20px;
}

.home-page .footer-main {
  min-height: 174px;
  padding: 16px clamp(38px, 5vw, 72px) 12px;
  border-top: 0;
  background: transparent;
}

.home-page .footer-label,
.home-page .footer-detail a,
.home-page .footer-location span {
  font-size: 12px;
}

.home-page .footer-cta-block h2 {
  margin-bottom: 10px;
  color: #d2d2d2;
  font-size: 43px;
  line-height: 0.88;
}

.home-page .footer-cta-button {
  min-height: 38px;
  padding: 8px 24px;
}

.home-page .footer-socials a {
  width: 38px;
  height: 38px;
  font-size: 19px;
}

.home-page .footer-bar-inner {
  min-height: 36px;
  padding-inline: clamp(24px, 3.6vw, 52px);
  font-size: 9px;
}

@media (max-width: 1100px) {
  .home-page .site-nav {
    gap: 20px;
    margin-left: 20px;
  }

  .home-page .site-nav .nav-cta {
    margin-left: 20px;
  }

  .home-page .project-overlay h3 {
    font-size: 34px;
  }

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

  .home-page .poster-card .project-overlay h3 {
    font-size: 28px;
  }
}

@media (max-width: 860px) {
  .home-page .site-header,
  .home-page .site-header.is-scrolled {
    height: 76px;
  }

  .home-page .brand img {
    width: 58px;
    height: 58px;
  }

  .home-page .site-nav {
    margin-left: 0;
  }

  .home-page .site-nav .nav-cta {
    margin-left: 0;
  }

  .home-page .hero,
  .home-page .hero-layout {
    min-height: 680px;
  }

  .home-page .hero-layout {
    padding: 130px 30px 60px;
  }

  .home-page .hero::before {
    background: linear-gradient(90deg, rgba(3, 3, 4, 0.82), rgba(3, 3, 4, 0.38));
  }

  .home-page .hero-media img {
    object-position: 62% center;
  }

  .home-page .about-layout,
  .home-page .vision-layout,
  .home-page .leadership-layout {
    grid-template-columns: 1fr;
  }

  .home-page .leadership-media {
    min-height: 360px;
  }

  .home-page .project-grid,
  .home-page .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .service-card:nth-child(3) {
    border-left: 0;
  }

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

  .home-page .bts-card:last-child {
    grid-column: span 2;
  }

  .home-page .trust-grid,
  .home-page .trust-logos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-page .hero-title {
    font-size: clamp(56px, 18vw, 74px);
  }

  .home-page .hero-kicker {
    font-size: 19px;
  }

  .home-page .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .home-page .about-panel,
  .home-page .vision-panel,
  .home-page .leadership-panel {
    padding: 34px 24px;
  }

  .home-page .project-grid,
  .home-page .service-grid,
  .home-page .bts-grid {
    grid-template-columns: 1fr;
  }

  .home-page .bts-card:last-child {
    grid-column: auto;
  }

  .home-page .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .home-page .footer-meta-block {
    justify-items: center;
  }

  .home-page .footer-location {
    text-align: center;
  }
}
