:root {
  --ink: #1e2933;
  --muted: #66717d;
  --line: #e7e8ea;
  --paper: #ffffff;
  --soft: #f6f4f0;
  --accent: #b32430;
  --deep: #122632;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(231, 232, 234, 0.8);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: white;
  background: var(--accent);
  border-radius: 50%;
  font-family: Lora, Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

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

.brand strong {
  font-size: 16px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 26px;
  color: #3f4a54;
  font-size: 14px;
  font-weight: 700;
}

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

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
}

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

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(18, 38, 50, 0.86), rgba(18, 38, 50, 0.38));
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 78px;
}

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

.hero .eyebrow {
  color: #ffd7d7;
}

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

h1,
h2 {
  font-family: Lora, Georgia, serif;
  line-height: 1.1;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 600;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
}

h3 {
  margin: 20px 0 8px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-content p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 2px;
  font-weight: 800;
}

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

.button.light {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.intro,
.section,
.split,
.note,
.contact,
.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 52px;
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--line);
}

.intro > p,
.section-head p,
.cards p,
.split li,
.note p,
.contact p,
.contact-box span {
  color: var(--muted);
}

.section {
  padding: 74px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.cards article {
  border: 1px solid var(--line);
  background: white;
}

.cards img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cards h3,
.cards p {
  padding-right: 22px;
  padding-left: 22px;
}

.cards p {
  padding-bottom: 24px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 42px 0 74px;
}

.split img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.split ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.simple-flow {
  border-top: 1px solid var(--line);
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.flow span {
  padding: 18px;
  color: var(--deep);
  background: var(--soft);
  font-weight: 800;
}

.note {
  padding: 34px;
  background: var(--soft);
}

.note p:last-child {
  max-width: 820px;
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 52px;
  margin-top: 74px;
  margin-bottom: 62px;
  padding: 54px;
  color: white;
  background: var(--deep);
}

.contact h2 {
  color: white;
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-box {
  display: grid;
  gap: 12px;
  padding: 24px;
  color: var(--ink);
  background: white;
}

.contact-box a {
  color: var(--accent);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.legal-page {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 142px 0 72px;
}

.legal-page h1 {
  color: var(--deep);
  font-size: clamp(42px, 6vw, 64px);
}

.legal-page h2 {
  margin-top: 34px;
  color: var(--deep);
  font-size: clamp(26px, 3vw, 34px);
}

.legal-page p {
  color: var(--muted);
}

.legal-page a {
  color: var(--accent);
  font-weight: 800;
}

.legal-updated {
  margin-top: 38px;
  font-size: 14px;
}

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

  .nav {
    display: none;
  }

  .intro,
  .cards,
  .split,
  .flow,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact {
    width: 100%;
    margin-bottom: 44px;
    padding: 46px 20px;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero-content,
  .intro,
  .section,
  .split,
  .note,
  .footer {
    width: calc(100% - 32px);
  }

  .hero-content {
    padding-bottom: 54px;
  }

  .hero-actions,
  .footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
