:root {
  --navy: #061426;
  --navy-deep: #020b14;
  --ink: #111827;
  --muted: #5f6470;
  --warm-white: #f8f3eb;
  --paper: #fffaf2;
  --gold: #a87822;
  --gold-soft: rgba(168, 120, 34, 0.22);
  --line: rgba(6, 20, 38, 0.13);
  --shadow: 0 28px 80px rgba(6, 20, 38, 0.16);
  --max-width: 1440px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.55;
}

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

.site-header {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.4rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 243, 235, 0.92);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  /* color: var(--navy); */
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 3vw, 3.3rem);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.primary-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.primary-nav a:hover::after { transform: scaleX(1); }

.hero-landing {
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.98) 0%, rgba(7, 16, 24, 0.9) 31%, rgba(7, 16, 24, 0.34) 56%, rgba(7, 16, 24, 0.18) 100%),
	url(assets/images/hero-boardroom.jpeg) center right / cover no-repeat;
  background:
    linear-gradient(90deg, rgba(248,243,235,0.6) 0%, rgba(248,243,235,0.6) 45%, rgba(248,243,235,0.45) 48%, rgba(248,243,235,0) 55%),
    url(assets/images/hero-boardroom.jpeg) center right / cover no-repeat;
}

.hero-landing {
  /*min-height: calc(100vh - 74px);*/
  display: grid;
  grid-template-columns: 1.0fr 1.0fr;
  align-items: stretch;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 7vw, 6.3rem) clamp(1.5rem, 2vw, 2rem) clamp(3rem, 7vw, 6.3rem) clamp(1.5rem, 6vw, 6rem);
  align-self: center;
  max-width: 800px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.15rem;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::after,
.section-kicker::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 1px;
  margin-top: 0.72rem;
  background: var(--gold);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(3.1rem, 4.5vw, 4.5rem);
  line-height: 0.98;
  max-width: 720px;
  margin: 0 0 1.6rem;
}

.hero-statement {
  margin: 0 0 1.25rem;
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  line-height: 1.35;
  color: var(--gold);
  max-width: 620px;
}

.hero-support {
  margin: 0;
  max-width: 610px;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  color: #1f2937;
}

.hero-actions {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.95rem 1.55rem;
  border-radius: 12px;
  border: 1px solid var(--navy);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(6, 20, 38, 0.12);
}

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

.button-primary:hover { background: var(--navy-deep); }
.button-secondary { background: rgba(248, 243, 235, 0.72); color: var(--navy); }
.button-secondary:hover { background: rgba(255, 250, 242, 0.96); }

.hero-image-wrap {
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

/*
.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(248,243,235,0.92) 0%, rgba(248,243,235,0.28) 23%, rgba(248,243,235,0) 44%);
  pointer-events: none;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 38%;
  z-index: 1;
  background: linear-gradient(0deg, rgba(2,11,20,0.24) 0%, transparent 85%);
  pointer-events: none;
}
  */

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 74px);
  object-fit: cover;
  object-position: 54% center;

  object-position: right top;
  display: none;
}

.section-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 25% 0%, rgba(168, 120, 34, 0.07), transparent 26rem),
    var(--paper);
  padding: 0 clamp(1.4rem, 4vw, 4rem);
}

.section-card {
  padding: clamp(2.4rem, 4vw, 4rem) clamp(1.4rem, 3vw, 3.4rem);
  min-height: 330px;
  border-right: 1px solid var(--line);
}

.section-card:first-child { padding-left: 0; }
.section-card:last-child { border-right: none; padding-right: 0; }

.section-card h2 {
  font-size: clamp(1.7rem, 1.9vw, 2.0rem);;
  line-height: 1.12;
  margin: 0 0 1.25rem;
}

.section-card p:not(.section-kicker) {
  color: #1f2937;
  margin: 0;
  max-width: 440px;
}

.text-link {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  margin-top: 2rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.text-link:hover span { transform: translateX(4px); }

.site-footer {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(1.4rem, 4vw, 4rem);
  color: rgba(248, 243, 235, 0.86);
  background: var(--navy-deep);
  font-size: 0.86rem;
}

.site-footer p { margin: 0; }
.site-footer p:last-child { text-align: right; }

@media (max-width: 980px) {
  .hero-landing {
    grid-template-columns: 1fr;
    background: var(--warm-white);
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 2.6rem;
  }

  .hero-image-wrap {
    height: 58vh;
    min-height: 420px;
    order: -1;
  }

  .hero-image-wrap img {
    min-height: 420px;
    object-position: right top;
    display: block;
  }

  .hero-image-wrap::before {
    background: linear-gradient(0deg, rgba(248,243,235,1) 0%, rgba(248,243,235,0.28) 35%, rgba(248,243,235,0) 70%);
  }

  .section-strip { grid-template-columns: 1fr; }

  .section-card,
  .section-card:first-child,
  .section-card:last-child {
    padding: 2.4rem 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }

  .section-card:last-child { border-bottom: none; }
}

@media (max-width: 680px) {
  .site-header {
    height: auto;
    /*min-height: 82px;*/
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.9rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: block;
  }

  .site-header .brand {
    display: block;
    margin-right: 3rem;
  }

  .site-header .menu {
    width: 3.5rem;
    height: 2rem;
    margin-right: -0.2rem;
    padding: 0.2rem 1rem;
    display: block;
    position: absolute;
    right: 1.0rem;
    top: 0.8rem;
  }

  .primary-nav {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.72rem;
    display: none;
    margin-top: 1rem;
  }

  .primary-nav a {
    display: block;
    text-align: right;
    padding: 1rem 0.4rem;
  }

  h1 {
    font-size: clamp(2.2rem, 14vw, 2.6rem);
  }

  .hero-image-wrap {
    height: 22vh;
    min-height: 280px;
    order: -1;
  }

  .hero-image-wrap img {
    min-height: 360px;
    object-position: right top;
    /* object-position: center center; */
  }

  /* .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 360px;
    height: 48vh;
  } */

  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }

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

  .site-footer p:last-child { text-align: left; }
}
