:root {
  --ink: #071524;
  --navy: #081b2f;
  --navy-2: #0d2c42;
  --cream: #f5f1e9;
  --paper: #fffaf2;
  --line: #d8c7a0;
  --gold: #c99b3f;
  --gold-light: #efcf83;
  --teal: #1c7f85;
  --clay: #9d5e3f;
  --text: #243243;
  --muted: #6b7280;
  --shadow: 0 22px 60px rgba(7, 21, 36, 0.18);
  --display: "Iowan Old Style", "Cormorant Garamond", Georgia, serif;
  --body: "Avenir Next", Montserrat, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(22px, 5vw, 70px);
  color: #fff;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 21, 36, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  position: relative;
  z-index: 22;
  display: inline-flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.site-header.show-brand .brand,
.site-header.is-open .brand {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.brand img {
  width: 168px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  position: relative;
  z-index: 22;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle span:first-child {
  top: 16px;
}

.nav-toggle span:last-child {
  top: 26px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(8, 27, 47, 0.98), rgba(8, 27, 47, 0.88) 46%, rgba(13, 44, 66, 0.94)),
    repeating-linear-gradient(135deg, rgba(239, 207, 131, 0.1) 0 1px, transparent 1px 86px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  align-items: end;
  gap: clamp(24px, 5vw, 76px);
  padding: 88px clamp(22px, 6vw, 84px) 0;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 78px;
  background: linear-gradient(to top, rgba(5, 14, 25, 0.78), transparent);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(56vw, 960px);
  max-width: none;
  padding-bottom: 88px;
  overflow: visible;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-logo {
  display: block;
  width: min(56vw, 960px);
  max-width: none;
  height: auto;
}

.hero-tagline {
  margin: 12px 0 0;
  color: var(--gold-light);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-text {
  max-width: 390px;
  margin: 20px 0 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  border-color: var(--gold-light);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
}

.button-secondary {
  color: #fff;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  align-self: end;
  display: flex;
  justify-content: center;
  align-items: end;
  min-height: 0;
  padding-bottom: 0;
}

.image-slot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 155, 63, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(201, 155, 63, 0.1)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.05) 50% 75%, transparent 75%);
  background-size: auto, 32px 32px;
}

.image-slot.has-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-image-slot.has-image {
  background-position: center bottom;
  background-size: contain;
}

.hero-image-slot {
  width: min(100%, 390px);
  aspect-ratio: 2 / 3;
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(720px, 1.42fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: 46px clamp(22px, 6vw, 84px);
  background: var(--cream);
  border-bottom: 1px solid rgba(216, 199, 160, 0.72);
}

.intro-copy {
  border-right: 1px solid rgba(8, 27, 47, 0.2);
  padding-right: clamp(20px, 3vw, 34px);
}

.intro-copy h2,
.chapter h2,
.about h2,
.family-copy h2,
.media-panel h2,
.contact-panel h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.02;
}

.intro-copy p {
  margin: 0;
  max-width: 520px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(136px, 1fr));
  gap: 0;
}

.metrics article {
  min-height: 145px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  text-align: center;
  border-left: 1px solid rgba(216, 199, 160, 0.9);
}

.metrics strong {
  display: block;
  max-width: 100%;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.02;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
}

.metrics span {
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.chapter {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(420px, 1fr);
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
  padding: 58px clamp(22px, 6vw, 84px);
}

.chapter h2,
.about h2 {
  color: #fff;
}

.chapter p,
.about p {
  color: rgba(255, 255, 255, 0.82);
}

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

.feature-card {
  overflow: hidden;
  border: 1px solid rgba(239, 207, 131, 0.46);
  background: rgba(3, 12, 22, 0.34);
}

.feature-image {
  aspect-ratio: 16 / 9;
  border: 0;
  border-bottom: 1px solid rgba(239, 207, 131, 0.46);
}

.feature-caption {
  padding: 22px;
  text-align: center;
}

.feature-caption h3 {
  margin: 0 0 7px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
}

.feature-caption span,
.portfolio-content span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio {
  padding: 58px clamp(18px, 5vw, 70px) 68px;
  background:
    linear-gradient(180deg, #fffaf2 0%, #f4efe5 100%),
    radial-gradient(circle at 18% 20%, rgba(28, 127, 133, 0.08), transparent 32%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(36px, 1fr) auto minmax(36px, 1fr);
  gap: 28px;
  align-items: center;
  margin: 0 auto 34px;
  max-width: 760px;
  text-align: center;
}

.section-heading span {
  height: 1px;
  background: var(--gold);
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  text-transform: uppercase;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 18px;
}

.portfolio-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(8, 27, 47, 0.16);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(7, 21, 36, 0.08);
}

.portfolio-image {
  aspect-ratio: 4 / 3;
  border: 0;
  border-bottom: 1px solid rgba(8, 27, 47, 0.14);
}

.portfolio-content {
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  text-align: center;
}

.portfolio-content h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.05;
}

.portfolio-content p {
  margin: 0 0 18px;
  font-size: 13px;
}

.portfolio-content span {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 155, 63, 0.36);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: 66px clamp(22px, 6vw, 84px);
}

.quote-card {
  margin: 0;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(239, 207, 131, 0.34);
  background: rgba(0, 0, 0, 0.16);
}

.quote-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-card p {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  line-height: 1.13;
}

.family-media {
  background: var(--cream);
}

.family-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  align-items: stretch;
}

.family-image {
  min-height: 300px;
  border: 0;
  border-right: 1px solid rgba(8, 27, 47, 0.14);
}

.family-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 74px);
}

.family-copy p {
  max-width: 620px;
  margin: 0;
}

.media-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(8, 27, 47, 0.14);
}

.media-panel,
.contact-panel {
  padding: 34px clamp(22px, 6vw, 84px);
}

.media-panel {
  border-right: 1px solid rgba(8, 27, 47, 0.14);
}

.media-panel h2,
.contact-panel h2 {
  font-size: clamp(26px, 3vw, 38px);
  text-transform: uppercase;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
  gap: 8px;
}

.press-grid span {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 27, 47, 0.18);
  color: #53606d;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.contact-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-panel a {
  color: var(--ink);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(22px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.74);
  background: #06111f;
}

.footer-logo {
  width: 66px;
  height: auto;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1120px) {
  .metrics {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .press-grid {
    grid-template-columns: repeat(3, minmax(110px, 1fr));
  }
}

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

  .site-nav {
    position: fixed;
    top: 86px;
    right: 18px;
    left: auto;
    bottom: auto;
    width: min(320px, calc(100vw - 36px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(239, 207, 131, 0.26);
    background: rgba(7, 21, 36, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
    text-align: right;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 15px;
    text-align: right;
  }

  .hero,
  .intro-band,
  .chapter,
  .about,
  .family-block,
  .media-contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding-bottom: 28px;
    text-align: left;
  }

  .hero-image-wrap {
    min-height: 0;
    padding-bottom: 0;
  }

  .hero-image-slot {
    width: min(78vw, 360px);
    min-height: 0;
  }

  .intro-copy {
    border-right: 0;
    padding-right: 0;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(132px, 1fr));
  }

  .metrics article {
    border: 1px solid rgba(216, 199, 160, 0.9);
  }

  .feature-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .family-image,
  .media-panel {
    border-right: 0;
  }

  .media-panel {
    border-bottom: 1px solid rgba(8, 27, 47, 0.14);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    width: 132px;
  }

  .site-nav {
    top: 76px;
    right: 12px;
    width: min(300px, calc(100vw - 24px));
  }

  .hero,
  .intro-band,
  .chapter,
  .about,
  .family-copy,
  .media-panel,
  .contact-panel,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-logo {
    width: 75vw;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tagline {
    font-size: 14px;
  }

  .hero-text {
    margin-left: 0;
    margin-right: 0;
  }

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

  .metrics,
  .feature-grid,
  .portfolio-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 14px;
  }

  .family-image {
    min-height: 240px;
  }

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