:root {
  font-family: Georgia, "Times New Roman", serif;
  color: #eee7d9;
  background: #101614;
  font-synthesis: none;
  --steel: #171e1b;
  --steel-raised: #202825;
  --paper: #eee4cf;
  --muted: #c8c3b5;
  --brass: #c9ad76;
  --line: #6f6b59;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 16%, #343b32 0, transparent 36%),
    linear-gradient(150deg, #1c2420, #101614 58%, #0a100e);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.page-shell { max-width: 1500px; margin: auto; min-height: 100vh; padding: 0 clamp(1.2rem, 4vw, 5rem); }
.site-header {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 #0a0f0d;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  min-width: 0;
  text-decoration: none;
  font-size: 1.15rem;
  letter-spacing: .16em;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 1px 1px #000;
}
.brand-icon { display: block; width: 2.7rem; height: 2.7rem; flex: none; object-fit: cover; border: 1px solid var(--brass); border-radius: 22%; }
.header-actions { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3rem); }
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); font-size: 1rem; font-weight: 700; }
.main-nav a { padding: .7rem 0; color: var(--muted); border-bottom: 2px solid transparent; text-decoration: none; }
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a[aria-current="page"] { color: var(--paper); border-color: var(--brass); }
.language-nav { display: flex; align-items: center; gap: .5rem; color: #8d9085; font: 700 .8rem Arial, Helvetica, sans-serif; letter-spacing: .08em; }
.language-nav a { color: var(--muted); text-decoration: none; padding: .5rem .1rem; }
.language-nav a:hover, .language-nav a:focus-visible, .language-nav a[aria-current="page"] { color: var(--brass); }

.eyebrow, .archive-status {
  color: var(--brass);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow { margin-bottom: 1.6rem; }

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.hero-copy { padding: 6rem 0 7rem; }
.hero h1 {
  color: var(--paper);
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  line-height: 1.04;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-shadow: 0 3px 2px #0009;
  margin-bottom: 2rem;
  overflow-wrap: anywhere;
}
.hero h1 span { display: inline; }
.lead { max-width: 35rem; color: #e2dccc; font-size: clamp(1.15rem, 1.6vw, 1.45rem); line-height: 1.55; }
.release-line { display: flex; align-items: center; gap: 1rem; margin-top: 3rem; color: var(--brass); font-size: .95rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.release-line .line { width: 3rem; height: 1px; flex: none; background: var(--brass); }
.instagram-link { display: inline-flex; align-items: center; gap: .7rem; margin-top: 2rem; padding: .7rem 0; border-bottom: 1px solid var(--brass); color: var(--paper); font-weight: 700; text-decoration: none; }
.instagram-link:hover, .instagram-link:focus-visible { color: var(--brass); }
.instagram-link span { font-size: 1.3rem; font-weight: 400; }
.hero-links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; margin-top: 2rem; }
.hero-links .instagram-link { margin-top: 0; }
.primary-link { display: inline-flex; align-items: center; gap: 1rem; padding: .8rem 1.3rem; border: 1px solid var(--brass); background: var(--brass); color: #171b17; font-weight: 700; text-decoration: none; }
.primary-link:hover, .primary-link:focus-visible { background: var(--paper); }
.hero-art, .cards-preview-art { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--brass); background: #101411; box-shadow: 0 0 0 5px #101613, 0 0 0 6px #6c6048, 0 18px 34px #0007; }
.hero-art { height: min(36vw, 510px); min-height: 350px; }
.hero-art img, .cards-preview-art img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-art figcaption, .cards-preview-art figcaption { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; width: fit-content; max-width: calc(100% - 2rem); padding: .45rem .7rem; border: 1px solid #9a8661; background: #141a18ed; color: var(--paper); font-size: .8rem; }

.outlook { padding: 6rem 0 7rem; }
.section-intro { max-width: 52rem; margin-bottom: 3.5rem; }
.section-intro h2 { color: var(--paper); font-size: clamp(2.4rem, 4vw, 4rem); line-height: 1.1; letter-spacing: -.025em; }
.section-intro > p:last-child { color: var(--muted); font-size: 1.12rem; }
.outlook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.outlook-grid article { min-height: 16rem; padding: 2rem; border: 1px solid #9b8866; border-top: 3px solid var(--brass); background: linear-gradient(155deg, #f1e9d7, #d9ccb1); box-shadow: inset 0 1px 0 #fff9, 0 12px 24px #0003; }
.item-number { display: block; margin-bottom: 1.5rem; color: #806139; font-size: .85rem; letter-spacing: .12em; }
.outlook-grid h3 { color: #20231e; font-size: 1.5rem; margin-bottom: .8rem; }
.outlook-grid p { color: #33332b; font-size: 1.02rem; line-height: 1.65; margin-bottom: 0; }

.site-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 2rem 0 3rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .95rem; }
.site-footer nav { display: flex; gap: 1.5rem; }
.site-footer a, .legal-main a { text-underline-offset: .2rem; }
.site-footer a:hover, .site-footer a:focus-visible, .legal-main a:hover, .legal-main a:focus-visible { color: var(--brass); }

.cards-main { min-height: calc(100vh - 190px); padding: clamp(4rem, 7vw, 7rem) 0 7rem; }
.cards-heading { max-width: 56rem; margin-bottom: 3.5rem; }
.cards-heading h1, .legal-main h1 { color: var(--paper); font-size: clamp(3.2rem, 7vw, 6rem); line-height: 1.08; letter-spacing: -.025em; margin-bottom: 2rem; }
.cards-heading p:not(.eyebrow) { max-width: 46rem; color: #d8d1c2; font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.6; }
.cards-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid #615b4b; background: linear-gradient(145deg, #252e28, #161d1a 65%); box-shadow: 0 16px 30px #0004; }
.cards-preview-art { min-height: 360px; border: 0; box-shadow: none; }
.cards-preview-copy { align-self: center; padding: clamp(2rem, 5vw, 5rem); }
.archive-status { display: block; margin-bottom: 2rem; }
.cards-preview-copy h2 { color: var(--paper); font-size: clamp(2rem, 3.4vw, 3.4rem); line-height: 1.12; margin-bottom: 1.5rem; }
.cards-preview-copy p { max-width: 32rem; color: #d0cbbd; font-size: 1.08rem; line-height: 1.65; }
.cards-preview-copy .instagram-link { margin-top: 1rem; }
.card-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.6rem); }
.unit-card { min-width: 0; background: linear-gradient(145deg, #e9dfc9, #cbbd9f); color: #25271f; border: 1px solid #b99b65; box-shadow: 0 0 0 4px #171e1a, 0 0 0 5px #6c6048, 0 16px 24px #0005; }
.unit-card img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-bottom: 3px solid #9c7c48; }
.unit-card-body { padding: 1.15rem 1.25rem 1.25rem; }
.unit-card-body span { display: block; color: #6b512e; font: 700 .68rem Arial, Helvetica, sans-serif; letter-spacing: .15em; }
.unit-card h2 { font-size: 1.55rem; line-height: 1.15; margin: .7rem 0 .6rem; }
.unit-card p { font-size: .9rem; margin: 0; color: #5b594d; }
.gallery-note { max-width: 44rem; margin: 2.6rem 0 0; color: var(--muted); }

.legal-main { max-width: 57rem; min-height: calc(100vh - 190px); padding: 5rem 0 7rem; }
.legal-main h1 { margin-bottom: 3rem; }
.legal-main h2 { color: var(--paper); font-size: 1.55rem; margin: 2.5rem 0 .75rem; }
.legal-main p, .legal-main address { color: #ded8ca; font-size: 1.08rem; line-height: 1.7; }
.legal-main address { font-style: normal; }
.draft-alert { padding: 1.2rem 1.4rem; border-left: 4px solid var(--brass); background: #e7dcc4; color: #22231d !important; margin: 0 0 3rem; }

@media (max-width: 800px) {
  .card-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding: 5rem 0 3rem; }
  .hero-art { height: 62vw; min-height: 300px; max-height: 500px; margin-bottom: 3.5rem; }
  .outlook { padding: 4.5rem 0; }
  .outlook-grid { grid-template-columns: 1fr; }
  .outlook-grid article { min-height: 0; }
  .cards-preview { grid-template-columns: 1fr; }
  .cards-preview-art { height: 58vw; min-height: 280px; }
  .cards-main { padding-bottom: 4.5rem; }
}
@media (max-width: 480px) {
  .site-header { flex-wrap: wrap; justify-content: flex-start; gap: .3rem; padding: 1rem 0 .65rem; }
  .wordmark { font-size: 1rem; letter-spacing: .11em; }
  .brand-icon { width: 2.3rem; height: 2.3rem; }
  .header-actions { width: 100%; justify-content: space-between; gap: .5rem; }
  .main-nav { gap: 1.5rem; font-size: .95rem; }
  .main-nav a { padding: .45rem 0; }
  .hero-copy { padding: 4rem 0 2.7rem; }
  .hero h1 { font-size: 3.2rem; letter-spacing: .015em; }
  .hero h1 span { display: block; }
  .release-line { margin-top: 2.5rem; }
  .hero-art { height: 68vw; min-height: 245px; margin-bottom: 3rem; }
  .outlook-grid article { padding: 1.5rem; }
  .cards-heading { margin-bottom: 2.5rem; }
  .cards-preview-art { height: 68vw; min-height: 245px; }
  .cards-preview-copy { padding: 2rem 1.5rem; }
  .legal-main { padding-top: 4rem; }
  .card-gallery { grid-template-columns: 1fr; }
}
