@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --paper: #f7efd8;
  --ink: #202522;
  --muted: #68706b;
  --accent: #315b55;
  --accent-dark: #244842;
  --line: #d9d5ca;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(32, 37, 34, 0.08) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.page {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.topbar {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: var(--accent);
}

.status {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero {
  flex: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  padding: 62px 0 54px;
}

.copy {
  max-width: 510px;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(70px, 9vw, 128px);
  line-height: 0.82;
  letter-spacing: -0.065em;
  font-weight: 600;
}

h1 em {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.rule {
  width: 72px;
  height: 4px;
  margin: 38px 0 28px;
  background: var(--accent);
}

.intro {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.intro strong {
  color: var(--ink);
  font-weight: 600;
}

.small-note {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  width: min(590px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
}

.visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-line {
  width: 42px;
  height: 1px;
  background: var(--line);
}

@media (max-width: 800px) {
  .page {
    width: min(100% - 32px, 620px);
  }

  .topbar {
    height: 78px;
  }

  .status {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 58px 0 64px;
  }

  .copy {
    max-width: none;
  }

  h1 {
    font-size: clamp(68px, 19vw, 112px);
  }

  .visual {
    order: 2;
  }

  .visual-card {
    width: min(520px, 94%);
  }

  .footer {
    justify-content: space-between;
  }
}

@media (max-width: 420px) {
  .page {
    width: calc(100% - 24px);
  }

  .brand {
    font-size: 9px;
  }

  .hero {
    padding-top: 44px;
  }

  .intro {
    font-size: 15px;
  }

  .footer {
    font-size: 8px;
    gap: 9px;
  }

  .footer-line {
    width: 24px;
  }
}