:root {
  --ink: #17201d;
  --pine: #18372f;
  --moss: #526457;
  --brass: #ad8847;
  --paper: #f8f5ef;
  --stone: #dfd8cc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 25, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(14, 20, 17, 0.78), rgba(14, 20, 17, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--pine);
}

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

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=88");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 19, 16, 0.78), rgba(13, 19, 16, 0.36) 48%, rgba(13, 19, 16, 0.1)),
    linear-gradient(0deg, rgba(13, 19, 16, 0.92), rgba(13, 19, 16, 0.05) 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 150px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--brass);
}

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

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 104px);
}

h2 {
  color: var(--ink);
  font-size: clamp(32px, 4.3vw, 62px);
}

h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 700;
}

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

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

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

.hero-status {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(960px, calc(100% - 40px));
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(13, 19, 16, 0.5);
  backdrop-filter: blur(12px);
}

.hero-status span {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.hero-status span:last-child {
  border-right: 0;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 130px) 0;
}

.section-label {
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: 180px minmax(0, 790px);
  gap: clamp(36px, 7vw, 110px);
}

.intro-copy p,
.section-heading + p {
  color: var(--moss);
  font-size: 18px;
}

.intro-copy h2 {
  margin-bottom: 24px;
}

.image-band {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--pine);
}

.image-band img {
  height: 520px;
  object-fit: cover;
  opacity: 0.82;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 27, 23, 0.72), rgba(15, 27, 23, 0.08));
}

.image-band-text {
  position: absolute;
  left: clamp(20px, 9vw, 120px);
  bottom: clamp(32px, 7vw, 84px);
  z-index: 1;
  max-width: 560px;
}

.image-band-text p {
  margin: 0;
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.15;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading .section-label {
  margin-bottom: 18px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.focus-card {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--stone);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 16px 42px rgba(18, 25, 22, 0.06);
}

.card-number {
  display: block;
  margin-bottom: 56px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.focus-card p,
.principle-item p,
.contact-copy p {
  color: var(--moss);
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 7vw, 92px);
  color: var(--white);
  background: var(--pine);
}

.statement h2 {
  max-width: 760px;
  color: var(--white);
}

.statement p:last-child {
  max-width: 430px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
}

.principle-item {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(330px, 0.65fr);
  gap: clamp(32px, 7vw, 96px);
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto clamp(70px, 9vw, 110px);
  padding: clamp(52px, 7vw, 82px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  margin-bottom: 20px;
}

.contact-panel {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  font-style: normal;
}

.contact-panel div {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--stone);
}

.contact-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-panel strong,
.contact-panel a {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.contact-panel a:hover,
.site-footer a:hover {
  color: var(--brass);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #101613;
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-inner {
    padding-top: 132px;
    padding-bottom: 178px;
  }

  .hero-status,
  .intro,
  .focus-grid,
  .statement,
  .principle-list,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-status span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .focus-card,
  .principle-item {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .contact-section {
    padding: 34px 24px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-inner {
    width: min(100% - 32px, 960px);
  }

  h1 {
    font-size: 48px;
  }

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

  .section,
  .contact-section {
    width: min(100% - 32px, 1160px);
  }

  .image-band img {
    height: 440px;
  }

  .site-footer {
    flex-direction: column;
  }
}
