:root {
  --ink: #101417;
  --carbon: #1a2024;
  --graphite: #2c3338;
  --ivory: #f3f1ec;
  --paper: #fcfaf5;
  --champagne: #c5a66a;
  --gold: #a77b39;
  --jade: #16453f;
  --mist: #d7d0c3;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(7, 10, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

img {
  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: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--paper);
  background: rgba(16, 20, 23, 0.72);
  border-bottom: 1px solid rgba(255, 250, 240, 0.13);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 1px solid var(--champagne);
  transform: rotate(45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.8rem;
}

.nav-action {
  justify-self: end;
  padding: 10px 15px;
  color: var(--paper);
  border: 1px solid rgba(197, 166, 106, 0.72);
  font-size: 0.8rem;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 28%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 13, 15, 0.92) 0%, rgba(10, 13, 15, 0.76) 46%, rgba(10, 13, 15, 0.22) 100%),
    linear-gradient(0deg, rgba(10, 13, 15, 0.88) 0%, rgba(10, 13, 15, 0.08) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 12svh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 9vw, 7.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(1.9rem, 3.7vw, 3.55rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 700;
}

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

.button.secondary {
  color: var(--paper);
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 250, 240, 0.34);
}

.section,
.section-band {
  padding: clamp(72px, 10vw, 132px) 0;
}

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

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-grid,
.experience-grid,
.service-grid,
.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.intro p,
.experience p,
.service-grid p,
.cta p {
  color: rgba(16, 20, 23, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

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

.section-heading.left {
  margin-bottom: 0;
}

.feature-grid,
.question-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 20, 23, 0.15);
  border-left: 1px solid rgba(16, 20, 23, 0.15);
}

.feature-card,
.question-grid article {
  min-height: 275px;
  padding: 28px;
  background: rgba(255, 250, 240, 0.38);
  border-right: 1px solid rgba(16, 20, 23, 0.15);
  border-bottom: 1px solid rgba(16, 20, 23, 0.15);
}

.feature-card span {
  display: block;
  margin-bottom: 58px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
}

.feature-card p,
.security-list p,
.question-grid p,
.archive-grid p {
  margin-bottom: 0;
  color: rgba(16, 20, 23, 0.67);
  font-size: 0.95rem;
}

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

.question-grid article {
  min-height: 180px;
}

.question-grid h3 {
  color: var(--gold);
}

.product-panel {
  padding: clamp(20px, 3vw, 32px);
  color: var(--paper);
  background: var(--carbon);
  box-shadow: var(--shadow);
}

.panel-top,
.metric-row,
.record-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.panel-top {
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.83rem;
}

.panel-top strong {
  color: var(--champagne);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 22px;
  background: rgba(255, 250, 240, 0.14);
}

.metric-row div {
  min-height: 96px;
  padding: 18px;
  background: #20272c;
}

small {
  display: block;
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.72rem;
}

.metric-row strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.answer-box {
  margin-bottom: 22px;
  padding: 22px;
  background: #f4ead8;
  color: var(--ink);
}

.answer-box small {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.answer-box p {
  margin: 9px 0 18px;
  color: var(--ink);
  font-size: 1rem;
}

.answer-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(16, 20, 23, 0.72);
  font-size: 0.86rem;
}

.record-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 250, 240, 0.13);
}

.record-list div {
  padding: 17px 0;
  background: var(--carbon);
}

.record-list span {
  color: var(--champagne);
  font-size: 0.78rem;
}

.record-list strong {
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.86rem;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.archive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.archive-example {
  padding: clamp(24px, 4vw, 38px);
  color: var(--paper);
  background: var(--jade);
  box-shadow: var(--shadow);
}

.archive-example div {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.22);
}

.archive-example span {
  display: block;
  margin-bottom: 10px;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-example strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 400;
  line-height: 1.08;
}

.archive-example p {
  color: rgba(255, 250, 240, 0.76);
}

.security-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 20, 23, 0.14);
}

.security-list div {
  min-height: 178px;
  padding: 28px;
  background: var(--ivory);
}

.service-steps {
  display: grid;
  gap: 1px;
  background: rgba(16, 20, 23, 0.13);
}

.service-steps div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px;
  background: var(--paper);
}

.service-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--paper);
  background: var(--jade);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-steps p {
  margin: 0;
}

.cta {
  padding: clamp(80px, 12vw, 150px) 20px;
  color: var(--paper);
  background: var(--ink);
  text-align: center;
}

.cta-inner {
  width: min(820px, 100%);
  margin: 0 auto;
}

.cta p {
  width: min(660px, 100%);
  margin: 0 auto 32px;
  color: rgba(255, 250, 240, 0.74);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 4vw, 56px);
  color: rgba(255, 250, 240, 0.68);
  background: #0b0e10;
  font-size: 0.82rem;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .intro-grid,
  .experience-grid,
  .service-grid,
  .security-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-action {
    padding: 9px 11px;
    font-size: 0.74rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media img {
    object-position: 61% 24%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 13, 15, 0.92) 0%, rgba(10, 13, 15, 0.68) 100%),
      linear-gradient(0deg, rgba(10, 13, 15, 0.9) 0%, rgba(10, 13, 15, 0.1) 58%);
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 5rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

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

  .feature-grid,
  .question-grid,
  .security-list,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 220px;
  }

  .feature-card span {
    margin-bottom: 32px;
  }

  .record-list div,
  .site-footer {
    flex-direction: column;
  }
}
