:root {
  --brown: #2c1608;
  --brown-soft: #43240f;
  --plum: #4c3434;
  --taupe: #a79b87;
  --ivory: #f4ecdc;
  --paper: #e9deca;
  --ink: #241910;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--ivory); font-family: "DM Sans", sans-serif; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  height: 82px;
  margin: auto;
}

.brand { display: flex; align-items: center; gap: 12px; font-family: "Rye", serif; font-size: 14px; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.site-header p { margin: 0; color: #756958; font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  color: var(--ivory);
  background: var(--brown);
  isolation: isolate;
}

.grain { position: absolute; inset: 0; z-index: -2; opacity: .18; 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='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }
.hero::after { content: ""; position: absolute; inset: 4%; z-index: -1; border: 1px solid rgba(244,236,220,.18); pointer-events: none; }
.hero-inner { display: grid; min-height: calc(100svh - 82px); place-items: center; align-content: center; padding: 100px 24px 90px; text-align: center; }
.hero-logo { width: min(380px, 44vw); margin: 0 auto; }

.rule { position: absolute; right: 7%; left: 7%; display: flex; align-items: center; gap: 12px; color: var(--taupe); font-size: 8px; }
.rule::before, .rule::after { content: ""; flex: 1; height: 1px; background: rgba(167,155,135,.42); }
.rule-top { top: 8%; }
.rule-bottom { bottom: 8%; }

footer { display: flex; align-items: center; justify-content: space-between; width: min(1180px, calc(100% - 48px)); margin: auto; padding: 34px 0; }
footer div { display: flex; align-items: baseline; gap: 14px; }
footer strong { font-family: "Rye", serif; font-size: 12px; font-weight: 400; text-transform: uppercase; }
footer span, footer p { color: #756958; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 760px) {
  .site-header { width: calc(100% - 32px); height: 70px; }
  .site-header p { display: none; }
  .brand img { width: 42px; height: 42px; }
  .hero { min-height: calc(100svh - 70px); }
  .hero-inner { min-height: calc(100svh - 70px); padding-inline: 16px; }
  .hero-logo { width: min(68vw, 320px); }
  footer { align-items: flex-end; width: calc(100% - 32px); }
  footer div { display: grid; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
