:root {
  --paper: #faf7ef;
  --paper-deep: #efe5d4;
  --ink: #17120f;
  --muted: #6f6256;
  --line: #dccfbb;
  --card: #fffdf8;
  --accent: #9d1628;
  --accent-dark: #65131b;
  --gold: #c9902c;
  --green: #2e7959;
  --shadow: 0 24px 70px rgba(42, 28, 18, 0.16);
}

* {
  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;
  line-height: 1.5;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 239, 0.82);
  border-bottom: 1px solid rgba(220, 207, 187, 0.72);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 4vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  border-radius: 9px;
  height: 34px;
  object-fit: cover;
  width: 34px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

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

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  display: block;
  height: 92vh;
  min-height: 680px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(250, 247, 239, 0.92), rgba(250, 247, 239, 0.5) 42%, rgba(250, 247, 239, 0.08) 74%),
    linear-gradient(180deg, rgba(250, 247, 239, 0.2), rgba(250, 247, 239, 0.78));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-copy {
  left: clamp(22px, 7vw, 104px);
  max-width: 570px;
  position: absolute;
  top: 50%;
  transform: translateY(-43%);
  z-index: 2;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 118px);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.lead {
  color: #3b312b;
  font-size: clamp(18px, 2vw, 23px);
  max-width: 540px;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  padding: 0 22px;
}

.button.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 14px 32px rgba(157, 22, 40, 0.26);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  color: var(--ink);
}

.content-band,
.split-section,
.company-section,
.notice-band {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(72px, 8vw, 112px) clamp(20px, 4vw, 44px);
}

.section-heading {
  max-width: 780px;
}

.intro-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.intro-grid article,
.feature-panel,
.company-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(42, 28, 18, 0.08);
}

.intro-grid article {
  min-height: 250px;
  padding: 28px;
}

.intro-grid p,
.feature-panel p,
.feature-list span,
.notice-band p {
  color: var(--muted);
  font-size: 16px;
}

.feature-icon {
  align-items: center;
  background: #fff3ed;
  border: 1px solid #eac1b6;
  border-radius: 10px;
  color: var(--accent);
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  margin-bottom: 26px;
  width: 42px;
}

.split-section {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.feature-panel {
  background: #211a14;
  border-color: #34251b;
  color: white;
  padding: 38px;
}

.feature-panel .eyebrow {
  color: #f0b44b;
}

.feature-panel p {
  color: #decfbd;
}

.feature-list {
  background: var(--paper-deep);
  border-radius: 8px;
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.feature-list div {
  background: var(--card);
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 26px 30px;
}

.feature-list strong {
  font-size: 18px;
}

.notice-band {
  align-items: start;
  background: #fff3ed;
  border-bottom: 1px solid #ecd5cc;
  border-top: 1px solid #ecd5cc;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  max-width: none;
  padding-left: clamp(20px, 8vw, 120px);
  padding-right: clamp(20px, 8vw, 120px);
}

.company-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 0.8fr 1.4fr 1fr;
  margin-top: 30px;
}

.company-card {
  min-height: 150px;
  padding: 28px;
}

.company-card span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.company-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.3;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 30px clamp(20px, 4vw, 64px);
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: var(--ink);
}

@media (max-width: 860px) {
  .site-header {
    height: 64px;
  }

  .nav-links {
    gap: 14px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    height: 760px;
    min-height: 760px;
    object-position: 66% center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(250, 247, 239, 0.95), rgba(250, 247, 239, 0.72) 44%, rgba(250, 247, 239, 0.28)),
      linear-gradient(90deg, rgba(250, 247, 239, 0.88), rgba(250, 247, 239, 0.18));
  }

  .hero-copy {
    left: 22px;
    max-width: calc(100% - 44px);
    top: 154px;
    transform: none;
  }

  .intro-grid,
  .split-section,
  .notice-band,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid article {
    min-height: auto;
  }

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

@media (max-width: 560px) {
  .nav-links a:nth-child(2) {
    display: none;
  }

  .brand {
    font-size: 16px;
  }

  h1 {
    font-size: 60px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    max-width: 260px;
  }

  .button {
    width: 100%;
  }

  .content-band,
  .split-section,
  .company-section,
  .notice-band {
    padding-bottom: 68px;
    padding-top: 68px;
  }
}
