:root {
  --ink: #10251f;
  --paper: #f2f0e9;
  --muted: #6c746f;
  --line: #c8cbc3;
  --accent: #b38a45;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

main {
  width: min(1440px, 100%);
  min-height: 100svh;
  margin: auto;
  padding: 28px clamp(24px, 5vw, 76px) 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.masthead, footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.brand { display: flex; align-items: center; gap: 13px; color: inherit; text-decoration: none; }
.monogram { width: 31px; height: 31px; border: 1px solid var(--ink); display: grid; place-items: center; font: 500 18px/1 "Newsreader", serif; }
.wordmark { font: 500 19px/1 "Newsreader", serif; letter-spacing: .01em; }
.status { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.hero { position: relative; display: grid; grid-template-columns: minmax(70px, .35fr) minmax(300px, 1.5fr) .7fr; align-items: center; padding: clamp(60px, 10vh, 130px) 0; overflow: hidden; }
.edition { align-self: stretch; border-right: 1px solid var(--line); color: var(--muted); font-size: 10px; letter-spacing: .21em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); padding-right: 24px; }
.hero-copy { padding-left: clamp(30px, 6vw, 92px); position: relative; z-index: 1; }
.eyebrow { margin: 0 0 25px; color: var(--accent); font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
h1 { margin: 0; font: 400 clamp(55px, 7.4vw, 108px)/.92 "Newsreader", serif; letter-spacing: -.055em; }
h1 em { font-weight: 400; color: var(--muted); }
.intro { max-width: 460px; margin: 38px 0 33px; color: var(--muted); font-size: clamp(14px, 1.2vw, 17px); line-height: 1.7; }
.contact { width: fit-content; display: flex; align-items: center; gap: 28px; padding: 13px 0; border-bottom: 1px solid var(--ink); color: var(--ink); font-size: 14px; font-weight: 500; text-decoration: none; }
.contact svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .25s ease; }
.contact:hover svg { transform: translateX(5px); }
.contact:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }

.seal { justify-self: end; width: clamp(180px, 25vw, 355px); aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink); opacity: .75; }
.seal::before, .seal::after { content: ""; position: absolute; background: var(--line); }
.seal::before { width: clamp(220px, 32vw, 470px); height: 1px; transform: rotate(-45deg); }
.seal::after { width: 1px; height: clamp(220px, 32vw, 470px); transform: rotate(-45deg); }
.seal span { position: relative; z-index: 1; padding: 8px 16px; background: var(--paper); font: 400 clamp(75px, 11vw, 155px)/1 "Newsreader", serif; }

footer { border-top: 1px solid var(--line); border-bottom: 0; padding: 18px 0 0; color: var(--muted); font-size: 10px; letter-spacing: .17em; text-transform: uppercase; }

@media (max-width: 760px) {
  main { padding: 22px 20px 18px; }
  .hero { grid-template-columns: 1fr; padding: 70px 0 54px; }
  .edition, .seal { display: none; }
  .hero-copy { padding-left: 0; }
  h1 { font-size: clamp(54px, 16vw, 76px); }
  .intro { margin-top: 30px; }
  .status { font-size: 9px; letter-spacing: .12em; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: reveal .7s both; }
  .hero-copy > :nth-child(2) { animation-delay: .08s; }
  .hero-copy > :nth-child(3) { animation-delay: .16s; }
  .hero-copy > :nth-child(4) { animation-delay: .24s; }
  @keyframes reveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}
