:root {
  --ink: #101418;
  --charcoal: #151a1f;
  --charcoal-2: #20262d;
  --cream: #f4efe6;
  --paper: #fbf8f1;
  --white: #ffffff;
  --muted: #68727d;
  --line: rgba(16, 20, 24, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --gold: #bd8b37;
  --green: #123c2f;
  --teal: #14766c;
  --clay: #a45b4f;
  --shadow: 0 28px 90px rgba(16, 20, 24, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.page-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 16px;
  left: clamp(16px, 3vw, 36px);
  right: clamp(16px, 3vw, 36px);
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(18, 22, 26, 0.38);
  color: var(--white);
  backdrop-filter: blur(22px);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, top 220ms ease;
}

.site-header.solid,
.site-header.is-scrolled,
.site-header.is-open {
  top: 10px;
  border-color: var(--line);
  background: rgba(251, 248, 241, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 60px rgba(16, 20, 24, 0.12);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text strong,
.brand-text small {
  display: block;
  line-height: 1;
}

.brand-text strong {
  font-size: 0.96rem;
}

.brand-text small {
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.site-header.solid .site-nav,
.site-header.is-scrolled .site-nav,
.site-header.is-open .site-nav {
  border-color: var(--line);
  background: rgba(16, 20, 24, 0.04);
}

.site-nav a,
.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  font-size: 0.82rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.header-cta:hover,
.header-cta.active {
  background: var(--gold);
  color: #171107;
}

.header-cta {
  border: 1px solid currentColor;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: end;
  padding: 140px clamp(18px, 5vw, 72px) 44px;
  color: var(--white);
}

.hero-visual,
.hero-visual::after {
  position: absolute;
  inset: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-visual::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 14, 17, 0.92), rgba(10, 14, 17, 0.62) 48%, rgba(10, 14, 17, 0.08)),
    linear-gradient(180deg, rgba(10, 14, 17, 0.12), rgba(10, 14, 17, 0.86));
}

.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 1120px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.86;
}

h2 {
  font-size: clamp(2.3rem, 5.4vw, 5.8rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.home-hero-content > p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 950;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-gold {
  background: var(--gold);
  color: #171107;
}

.button-gold:hover {
  background: #d5a24a;
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 44px;
  z-index: 2;
  width: min(360px, 32vw);
  padding: 26px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.hero-panel span {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.1;
}

.ticker-band {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 12px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--white);
  scrollbar-width: none;
}

.ticker-band span {
  min-width: max-content;
  padding: 14px 20px;
  border: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(74px, 10vw, 150px) clamp(18px, 5vw, 72px);
}

.grid-intro,
.story-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 110px);
  max-width: 1420px;
  margin: 0 auto;
}

.section-label span {
  display: inline-flex;
  padding-top: 12px;
  border-top: 2px solid var(--gold);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-copy p,
.story-copy p,
.split-cta-copy p,
.split-media-section p,
.contact-hero p,
.portal-hero p,
.page-hero-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.78;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.feature-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

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

.feature-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 20, 24, 0.06), rgba(16, 20, 24, 0.82));
  content: "";
}

.feature-card.dark::after {
  background: linear-gradient(180deg, rgba(18, 60, 47, 0.08), rgba(18, 60, 47, 0.88));
}

.feature-card div {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
}

.feature-card h3 {
  max-width: 560px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 0.95;
}

.feature-card a {
  display: inline-flex;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  font-weight: 950;
}

.outcomes {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: clamp(36px, 6vw, 90px);
  max-width: 1420px;
  margin: 0 auto;
}

.outcome-grid {
  display: grid;
  gap: 14px;
}

.outcome-item,
.value-card,
.service-detail,
.timeline-card,
.industry-list article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms ease;
}

.outcome-item:hover,
.value-card:hover,
.service-detail:hover,
.timeline-card:hover,
.industry-list article:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.outcome-item {
  padding: 30px;
}

.outcome-item span,
.value-card span,
.service-detail span,
.timeline-card span,
.industry-list span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal);
  font-weight: 950;
}

.outcome-item p,
.value-card p,
.service-detail p,
.timeline-card p,
.industry-list p {
  color: var(--muted);
  line-height: 1.7;
}

.split-cta,
.page-hero,
.portal-hero,
.contact-layout,
.split-media-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.72fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  padding: clamp(86px, 12vw, 170px) clamp(18px, 5vw, 72px);
}

.split-cta {
  background: var(--green);
  color: var(--white);
}

.split-cta-image {
  min-height: 650px;
  overflow: hidden;
}

.split-cta-image img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.split-cta-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  padding-top: 170px;
}

.page-hero-copy h1,
.process-hero h1,
.contact-hero h1,
.portal-hero h1 {
  color: var(--ink);
  font-size: clamp(3.2rem, 8vw, 8.7rem);
}

.page-hero-image,
.portal-hero img,
.contact-info img,
.split-media-section img {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero-image img {
  width: 100%;
  height: min(64vh, 720px);
  object-fit: cover;
}

.services-hero {
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

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

.value-stack,
.service-detail-grid,
.process-timeline,
.industry-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.value-card,
.service-detail,
.timeline-card,
.industry-list article {
  min-height: 360px;
  padding: clamp(26px, 3vw, 40px);
}

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

.service-detail h2,
.timeline-card h2,
.industry-list h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.8vw, 4.3rem);
}

.process-hero,
.contact-hero {
  min-height: 62vh;
  display: grid;
  align-items: end;
  padding: 170px clamp(18px, 5vw, 72px) 80px;
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.94), rgba(251, 248, 241, 0.72)),
    url("https://images.unsplash.com/photo-1559136555-9303baea8ebd?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.process-hero > div,
.contact-hero > div {
  max-width: 980px;
}

.process-hero p,
.contact-hero p {
  max-width: 640px;
}

.split-media-section {
  padding-top: 0;
}

.split-media-section img,
.portal-hero img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

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

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

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-info a,
.contact-info span {
  color: var(--green);
  font-size: 1.08rem;
  font-weight: 900;
}

.contact-info img {
  margin-top: 26px;
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #f8f5ee;
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 118, 108, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.portal-hero {
  min-height: 84vh;
  padding-top: 170px;
}

.portal-hero > div {
  max-width: 780px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto minmax(260px, 0.7fr);
  gap: clamp(28px, 5vw, 80px);
  padding: 56px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--white);
}

.site-footer p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.home-hero .reveal,
.page-hero .reveal,
.process-hero .reveal,
.contact-hero .reveal,
.portal-hero .reveal {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .site-header .site-nav {
    position: fixed;
    top: 92px;
    left: 16px;
    width: calc(100% - 32px);
    display: grid;
    gap: 0;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.solid .site-nav,
  .site-header.is-scrolled .site-nav,
  .site-header.is-open .site-nav {
    border-color: var(--line);
    background: var(--paper);
    color: var(--ink);
  }

  .site-header .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .site-nav a {
    justify-content: flex-start;
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    padding: 0 20px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 520px);
    margin-top: 42px;
  }

  .home-hero {
    align-items: center;
  }

  .grid-intro,
  .story-grid,
  .outcomes,
  .split-cta,
  .page-hero,
  .portal-hero,
  .contact-layout,
  .split-media-section {
    grid-template-columns: 1fr;
  }

  .value-stack,
  .service-detail-grid,
  .process-timeline,
  .industry-list,
  .feature-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .home-hero {
    min-height: 860px;
    padding: 124px 18px 34px;
  }

  .hero-actions,
  .portal-hero .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .feature-card,
  .feature-card img,
  .split-cta-image,
  .split-cta-image img,
  .split-media-section img,
  .portal-hero img {
    min-height: 420px;
    height: 420px;
  }

  .page-hero,
  .portal-hero,
  .split-cta,
  .contact-layout,
  .split-media-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero {
    padding-top: 140px;
  }

  .page-hero-image img {
    height: 420px;
  }

  .process-hero,
  .contact-hero {
    padding: 140px 18px 60px;
  }

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