:root {
  --red: #c8102e;
  --red-dark: #920f20;
  --gold: #d5a33c;
  --gold-soft: #f1d9a4;
  --ink: #141416;
  --charcoal: #242327;
  --muted: #67656d;
  --cream: #f7f1e8;
  --paper: #fffaf2;
  --white: #ffffff;
  --line: rgba(20, 20, 22, 0.13);
  --shadow: 0 26px 80px rgba(20, 20, 22, 0.15);
  --soft-shadow: 0 18px 56px rgba(20, 20, 22, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: 12px;
  transform: translateY(-150%);
  z-index: 1000;
}

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

.site-header {
  align-items: center;
  background: rgba(247, 241, 232, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20, 20, 22, 0.08);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 18px 32px;
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease, background 180ms ease;
  z-index: 50;
}

.brand {
  align-items: center;
  display: inline-flex;
  min-width: 260px;
  text-decoration: none;
}

.brand img {
  height: auto;
  width: 318px;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}

.nav a {
  border-radius: 999px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 850;
  padding: 11px 14px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus,
.nav a[aria-current="page"] {
  background: rgba(200, 16, 46, 0.09);
  color: var(--red);
  transform: translateY(-1px);
}

.nav .nav-cta {
  background: var(--red);
  color: var(--white);
  margin-left: 8px;
  padding-inline: 18px;
}

.nav .nav-cta:hover,
.nav .nav-cta:focus,
.nav .nav-cta[aria-current="page"] {
  background: var(--red-dark);
  color: var(--white);
}

.menu-toggle {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: none;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
}

.menu-toggle::before {
  content: "";
  background:
    linear-gradient(var(--white), var(--white)) 0 0 / 18px 2px no-repeat,
    linear-gradient(var(--white), var(--white)) 0 7px / 18px 2px no-repeat,
    linear-gradient(var(--white), var(--white)) 0 14px / 18px 2px no-repeat;
  height: 16px;
  width: 18px;
}

.hero,
.page-hero {
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.hero {
  min-height: 88vh;
  padding: 168px 34px 54px;
}

.page-hero {
  min-height: 450px;
  padding: 158px 34px 72px;
}

.hero img.hero-image,
.page-hero img.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: -3;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 10, 12, 0.92) 0%, rgba(11, 10, 12, 0.6) 48%, rgba(11, 10, 12, 0.1) 100%),
    linear-gradient(180deg, rgba(11, 10, 12, 0.1) 0%, rgba(11, 10, 12, 0.88) 100%);
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: -2;
}

.shell,
.hero-inner,
.page-hero-inner {
  margin: 0 auto;
  max-width: 1220px;
}

.hero-inner {
  margin-left: 0;
  max-width: 760px;
}

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

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

.hero h1,
.page-hero h1 {
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.96;
  margin-bottom: 22px;
  max-width: 860px;
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 64px);
}

.hero-copy,
.page-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 700px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 950;
  justify-content: center;
  line-height: 1;
  min-height: 52px;
  min-width: 154px;
  padding: 0 24px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

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

.button.outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button:hover,
.button:focus {
  box-shadow: 0 16px 36px rgba(20, 20, 22, 0.16);
  transform: translateY(-2px);
}

.hero-panel {
  background: rgba(247, 241, 232, 0.96);
  border-radius: 8px;
  bottom: 34px;
  box-shadow: var(--soft-shadow);
  color: var(--ink);
  max-width: 380px;
  padding: 24px;
  position: absolute;
  right: 34px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
  z-index: 2;
}

.hero-panel:hover,
.hero-panel:focus {
  box-shadow: 0 24px 70px rgba(20, 20, 22, 0.2);
  transform: translateY(-3px);
}

.hero-panel span,
.metric span,
.card span,
.advisor-card span {
  color: var(--red);
  display: block;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: 28px;
  line-height: 1.08;
  margin-top: 8px;
}

.hero-panel p {
  color: var(--muted);
  line-height: 1.45;
  margin: 10px 0 0;
}

.section {
  padding: 82px 34px;
}

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

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 450px);
  margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.contact-card h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  margin-bottom: 0;
}

.section-heading p,
.split-copy p,
.card p,
.advisor-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.dark .section-heading p,
.dark .card p {
  color: rgba(255, 255, 255, 0.72);
}

.metric-grid,
.card-grid,
.advisor-grid,
.brief-grid,
.event-grid {
  display: grid;
  gap: 18px;
}

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

.metric,
.card,
.contact-card,
.advisor-card,
.brief-card,
.event-card,
.form-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 20, 22, 0.08);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.metric,
.card,
.brief-card,
.event-card,
.form-card {
  padding: 24px;
}

.metric:hover,
.card:hover,
.advisor-card:hover,
.brief-card:hover,
.event-card:hover,
.form-card:hover {
  border-color: rgba(200, 16, 46, 0.22);
  box-shadow: var(--soft-shadow);
  transform: translateY(-3px);
}

.metric strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  margin: 10px 0 8px;
}

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

.card h3,
.brief-card h3,
.event-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-split {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.feature-media {
  border-radius: 8px;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

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

.split-copy {
  align-self: center;
  padding: 24px 0;
}

.sector-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.sector-item {
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 42px 1fr;
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.sector-item:hover {
  border-color: rgba(200, 16, 46, 0.28);
  transform: translateX(4px);
}

.sector-icon {
  align-items: center;
  background: var(--red);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 18px;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.sector-item h3 {
  font-size: 20px;
  margin: 0 0 6px;
}

.sector-item p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.advisor-grid {
  grid-template-columns: repeat(5, 1fr);
}

.advisor-card {
  overflow: hidden;
}

.advisor-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.advisor-card-body {
  padding: 18px;
}

.advisor-card h3 {
  font-size: 21px;
  margin: 7px 0 8px;
}

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

.brief-card,
.event-card {
  min-height: 240px;
}

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

.tag-row span {
  background: rgba(200, 16, 46, 0.09);
  border-radius: 999px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
}

.gallery-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.8fr;
}

.gallery-panel {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.gallery-panel img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.contact-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-card {
  padding: 30px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  color: var(--charcoal);
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.12);
  outline: 0;
}

.form-message {
  color: var(--red);
  font-weight: 850;
  margin: 14px 0 0;
  min-height: 22px;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 62px 34px 24px;
}

.footer-shell {
  display: grid;
  gap: 38px;
  grid-template-columns: 0.82fr 1.18fr;
  margin: 0 auto;
  max-width: 1220px;
}

.footer-logo img {
  width: 390px;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.footer-contact {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
}

.footer-contact label {
  color: var(--white);
}

.footer-contact input,
.footer-contact select,
.footer-contact textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.footer-contact input::placeholder,
.footer-contact textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin: 38px auto 0;
  max-width: 1220px;
  padding-top: 22px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-nav a,
.designer-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus,
.designer-link:hover,
.designer-link:focus {
  color: var(--white);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

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

@media (max-width: 1120px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
  }

  .hero {
    padding-top: 190px;
  }

  .hero-panel {
    margin-top: 34px;
    max-width: none;
    position: relative;
    right: auto;
    bottom: auto;
  }

  .metric-grid,
  .card-grid,
  .advisor-grid,
  .brief-grid,
  .event-grid,
  .contact-layout,
  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }

  .feature-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 174px;
  }

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

  .nav {
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--soft-shadow);
    display: none;
    flex: 0 0 100%;
    flex-direction: column;
    padding: 8px;
  }

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

  .nav a {
    padding: 12px 14px;
  }

  .nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 116px 18px 34px;
  }

  .page-hero {
    min-height: 390px;
    padding: 132px 18px 46px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    max-width: none;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .hero h1 {
    font-size: 43px;
    margin-bottom: 14px;
    max-width: 330px;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.5;
    max-width: 330px;
  }

  .hero .eyebrow {
    font-size: 12px;
    line-height: 1.25;
    max-width: 300px;
  }

  .section {
    padding: 62px 18px;
  }

  .section-heading,
  .metric-grid,
  .card-grid,
  .advisor-grid,
  .brief-grid,
  .event-grid,
  .gallery-strip,
  .contact-layout,
  .footer-shell,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 320px;
  }

  .footer {
    padding: 52px 18px 22px;
  }
}
