:root {
  --forest: #173128;
  --forest-soft: #25453a;
  --ivory: #f2eee4;
  --brass: #b59a61;
  --terracotta: #a9614a;
  --ink-muted: rgba(23, 49, 40, 0.7);
  --line: rgba(23, 49, 40, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ivory);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--ivory);
  color: var(--forest);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: 34px 44px 28px;
  isolation: isolate;
}

.paper-grain {
  position: absolute;
  z-index: -4;
  inset: 0;
  opacity: 0.25;
  background-image:
    radial-gradient(rgba(23, 49, 40, 0.15) 0.55px, transparent 0.55px),
    radial-gradient(rgba(169, 97, 74, 0.1) 0.5px, transparent 0.5px);
  background-position:
    0 0,
    7px 9px;
  background-size:
    13px 13px,
    17px 17px;
  pointer-events: none;
}

.page-shell::before {
  position: absolute;
  z-index: -3;
  top: 0;
  bottom: 0;
  left: 32%;
  width: 1px;
  background: linear-gradient(transparent, var(--line) 16%, var(--line) 84%, transparent);
  content: "";
}

.glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.glow-one {
  top: -35%;
  right: -10%;
  width: 54vw;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(181, 154, 97, 0.2), transparent 66%);
}

.glow-two {
  bottom: -48%;
  left: -8%;
  width: 46vw;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(169, 97, 74, 0.1), transparent 67%);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.site-header {
  animation: rise 0.8s 0.05s both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--forest);
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  letter-spacing: -0.04em;
  place-items: center;
}

.brand-name {
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 6px rgba(169, 97, 74, 0.1);
  animation: pulse 2.5s ease-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(330px, 0.58fr);
  gap: clamp(52px, 8vw, 140px);
  align-items: center;
  width: 100%;
  max-width: 1560px;
  margin: auto;
  padding: 6vh 1vw 5vh;
}

.hero-copy {
  animation: rise 0.9s 0.15s both;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--terracotta);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow span {
  margin: 0 8px;
  color: var(--brass);
}

h1 {
  max-width: 1020px;
  margin: 0;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(4.5rem, 8.25vw, 8.9rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.81;
}

h1 span {
  display: block;
}

.title-accent {
  padding-left: clamp(30px, 7vw, 120px);
  color: var(--terracotta);
  font-style: italic;
}

.intro-wrap {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  max-width: 520px;
  margin: 38px 0 0 clamp(30px, 7vw, 120px);
}

.intro-rule {
  flex: 0 0 46px;
  height: 1px;
  margin-top: 12px;
  background: var(--brass);
}

.intro {
  margin: 0;
  color: var(--ink-muted);
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  line-height: 1.62;
}

.editorial-visual {
  position: relative;
  width: min(30vw, 430px);
  aspect-ratio: 2 / 3;
  max-height: min(69vh, 645px);
  justify-self: center;
  margin: 0;
  overflow: hidden;
  border-radius: 220px 220px 18px 18px;
  background: var(--forest);
  box-shadow: 0 32px 80px rgba(23, 49, 40, 0.18);
  animation: rise 1s 0.28s both;
}

.editorial-visual::before {
  position: absolute;
  z-index: 2;
  inset: 10px;
  border: 1px solid rgba(242, 238, 228, 0.1);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.editorial-visual::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(12, 30, 24, 0.82));
  content: "";
  pointer-events: none;
}

.editorial-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visual-kicker {
  position: absolute;
  z-index: 3;
  top: 42px;
  left: 40px;
  color: rgba(242, 238, 228, 0.85);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.visual-caption {
  position: absolute;
  z-index: 3;
  right: 40px;
  bottom: 38px;
  left: 40px;
  display: grid;
  gap: 8px;
  color: var(--ivory);
}

.visual-caption span {
  color: var(--brass);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visual-caption strong {
  max-width: 260px;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 400;
  line-height: 1.2;
}

.site-footer {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  animation: rise 0.8s 0.42s both;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  position: relative;
  color: var(--forest);
  text-decoration: none;
}

.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 6px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(169, 97, 74, 0);
  }
}

@media (max-width: 950px) {
  .page-shell {
    padding: 26px 24px 24px;
  }

  .page-shell::before {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 9vh 0 7vh;
  }

  h1 {
    font-size: clamp(4rem, 14vw, 7.5rem);
  }

  .editorial-visual {
    width: min(76vw, 390px);
    max-height: none;
  }
}

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

  .hero {
    gap: 46px;
    padding: 8vh 0 6vh;
  }

  .eyebrow {
    line-height: 1.7;
  }

  h1 {
    font-size: clamp(3.35rem, 16.5vw, 5.2rem);
    line-height: 0.84;
  }

  .title-accent {
    padding-left: 18px;
  }

  .intro-wrap {
    gap: 14px;
    margin: 28px 0 0 18px;
  }

  .intro-rule {
    flex-basis: 28px;
  }

  .editorial-visual {
    width: min(86vw, 340px);
  }

  .site-footer {
    align-items: flex-start;
    gap: 13px;
    flex-direction: column;
    font-size: 9px;
  }
}

@media (max-height: 720px) and (min-width: 951px) {
  .hero {
    padding: 3vh 1vw;
  }

  h1 {
    font-size: clamp(4rem, 7vw, 7.2rem);
  }

  .editorial-visual {
    width: min(28vw, 370px);
    max-height: 550px;
  }

  .intro-wrap {
    margin-top: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
