:root {
  --ink: #172b2a;
  --ink-soft: #31514f;
  --cream: #f4f0e8;
  --paper: #fbfaf6;
  --orange: #e75631;
  --pine: #1f4540;
  --line: rgba(23, 43, 42, 0.17);
  --display: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link { position: fixed; z-index: 50; top: -50px; left: 16px; padding: 10px 14px; background: var(--paper); color: var(--ink); transition: top .2s; }
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; inline-size: 1px; block-size: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.site-header { position: absolute; z-index: 10; inset: 0 0 auto; display: flex; align-items: center; justify-content: space-between; width: min(100%, 1440px); margin: auto; padding: 24px clamp(24px, 5vw, 80px); color: var(--ink); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-weight: 500; font-size: 15px; letter-spacing: .18em; }
.brand-mark { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.brand-mark svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); font-size: 14px; font-weight: 500; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 14px; border: 1px solid var(--ink); border-radius: 99px; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.menu-toggle { display: none; }

.hero { position: relative; display: grid; min-height: min(820px, 100svh); overflow: hidden; place-items: center; background: #b8c0c8; isolation: isolate; }
.hero::before { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(102deg, rgba(250,248,243,.82) 0%, rgba(250,248,243,.58) 46%, rgba(224,231,233,.17) 77%, rgba(21,43,40,.26) 100%); }
.hero-photo { position: absolute; z-index: -2; inset: 0; background: url("assets/asama-nature.png") center / cover no-repeat; }
.hero-copy { position: relative; z-index: 1; width: min(90%, 720px); margin-top: 70px; text-align: center; }
.eyebrow, .kicker { margin: 0 0 18px; color: var(--ink-soft); font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; }
.eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); font-weight: 600; line-height: .98; letter-spacing: -.045em; }
h1 { margin-bottom: 26px; font-size: clamp(63px, 9.5vw, 142px); }
h1 em, h2 em { color: var(--orange); font-weight: inherit; }
.hero-intro { max-width: 400px; margin: 0 auto; color: var(--ink-soft); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55; }
.hero-actions { display: flex; gap: 26px; align-items: center; justify-content: center; margin-top: 32px; }
.button { display: inline-flex; gap: 18px; align-items: center; justify-content: center; padding: 15px 19px; border: 1px solid transparent; border-radius: 2px; font-size: 13px; font-weight: 600; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: var(--paper); background: var(--ink); }
.button-dark:hover { background: var(--orange); }
.button-light { color: var(--ink); background: var(--paper); }
.button-light:hover { background: #e8c8ad; }
.text-link { display: inline-flex; gap: 11px; align-items: center; padding: 3px 0; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 600; transition: color .2s; }
.text-link:hover { color: var(--orange); }
.hero-note { position: absolute; z-index: 1; right: clamp(24px, 5vw, 80px); bottom: 34px; color: rgba(244,240,232,.88); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.scroll-cue { position: absolute; z-index: 1; bottom: 28px; left: clamp(24px, 5vw, 80px); display: flex; gap: 11px; align-items: center; color: rgba(244,240,232,.85); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left bottom; }
.scroll-cue span { width: 30px; height: 1px; background: currentColor; }

.section { padding: clamp(76px, 11vw, 160px) clamp(24px, 8vw, 160px); }
.intro { display: grid; grid-template-columns: minmax(130px, .6fr) 1.3fr 1fr; gap: clamp(34px, 7vw, 110px); background: var(--paper); }
.section-label { display: flex; gap: 10px; align-items: center; align-self: start; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.section-label span { color: var(--orange); }
.section-label::after { width: 30px; height: 1px; content: ""; background: var(--orange); }
.intro-content { max-width: 540px; }
h2 { margin-bottom: 27px; font-size: clamp(44px, 5.4vw, 82px); }
.lead { margin-bottom: 25px; color: var(--ink-soft); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.62; }
.intro-map { position: relative; min-height: 310px; overflow: hidden; background: #d9d8cd; }
.intro-map img { display: block; width: 100%; height: 100%; min-height: 310px; object-fit: cover; image-rendering: pixelated; }
.intro-map p { position: absolute; right: 16px; bottom: 14px; margin: 0; padding: 7px 8px; color: var(--paper); background: rgba(23,43,42,.77); font-family: var(--display); font-size: 26px; font-weight: 700; line-height: .7; letter-spacing: -.05em; text-align: right; }
.intro-map small { font-family: var(--mono); font-size: 8px; letter-spacing: .16em; }

.explore { display: grid; grid-template-columns: minmax(130px, .6fr) 1fr 1fr; gap: 30px clamp(25px, 6vw, 100px); }
.explore-heading { grid-column: 2 / 4; }
.place-grid { display: grid; grid-column: 2 / 4; grid-template-columns: 1.13fr .87fr; gap: clamp(24px, 3.5vw, 55px); }
.place-card { background: var(--cream); }
.card-image { position: relative; height: clamp(230px, 29vw, 430px); overflow: hidden; }
.card-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.place-card:hover .card-image img { transform: scale(1.035); }
.image-location { position: absolute; z-index: 1; top: 18px; left: 18px; padding: 8px 10px; color: var(--paper); background: rgba(23,43,42,.77); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.card-body { position: relative; min-height: 180px; padding: 25px 75px 25px 25px; }
.card-body h3 { margin-bottom: 11px; font-family: var(--display); font-size: 27px; line-height: 1.1; letter-spacing: -.03em; }
.card-body p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.circle-link { position: absolute; top: 27px; right: 24px; display: grid; width: 37px; aspect-ratio: 1; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 18px; transition: color .2s, background .2s, transform .2s; }
.circle-link:hover { color: var(--paper); background: var(--orange); border-color: var(--orange); transform: rotate(45deg); }

.nature { display: grid; grid-template-columns: minmax(130px, .6fr) 1.18fr .82fr; gap: 30px clamp(25px, 6vw, 100px); align-items: center; background: #e7dfd1; }
.nature-image { grid-column: 2; min-height: clamp(290px, 35vw, 510px); overflow: hidden; }
.nature-image img { display: block; width: 100%; height: 100%; min-height: clamp(290px, 35vw, 510px); object-fit: cover; }
.nature-copy { grid-column: 3; max-width: 430px; }
.nature-copy h2 { font-size: clamp(40px, 4.5vw, 68px); }

.community { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; overflow: hidden; padding: clamp(78px, 11vw, 150px) clamp(24px, 15vw, 250px); color: var(--paper); background: var(--orange); }
.community-pattern { position: absolute; top: -14%; right: -6%; width: 52%; height: 130%; opacity: .3; background-image: linear-gradient(30deg, transparent 35%, rgba(244,240,232,.7) 35% 39%, transparent 39% 61%, rgba(244,240,232,.7) 61% 65%, transparent 65%), linear-gradient(-30deg, transparent 35%, rgba(244,240,232,.7) 35% 39%, transparent 39% 61%, rgba(244,240,232,.7) 61% 65%, transparent 65%); background-size: 94px 88px; transform: rotate(15deg); }
.community-copy { position: relative; max-width: 540px; }
.kicker-light { color: rgba(244,240,232,.72); }
.community h2 { margin-bottom: 25px; color: var(--paper); }
.community-copy > p:not(.kicker) { max-width: 440px; margin-bottom: 30px; font-size: 17px; line-height: 1.6; }
.community-seal { position: relative; display: grid; min-height: 280px; place-items: center; }
.community-seal img { width: clamp(200px, 22vw, 310px); aspect-ratio: 1; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 9px rgba(244,240,232,.42); }

.join-banner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; overflow: hidden; padding: clamp(72px, 10vw, 140px) clamp(24px, 15vw, 250px); color: var(--paper); background: var(--ink); }
.join-banner::before { position: absolute; top: -20%; right: -5%; width: min(48vw, 650px); aspect-ratio: 1; border: 1px solid rgba(244,240,232,.17); border-radius: 50%; content: ""; box-shadow: 0 0 0 60px rgba(244,240,232,.035), 0 0 0 120px rgba(244,240,232,.025); }
.join-banner-copy { position: relative; max-width: 620px; }
.join-banner .kicker { color: #e8c8ad; }
.join-banner h2 { margin-bottom: 20px; color: var(--paper); }
.join-banner-copy > p:not(.kicker) { max-width: 480px; margin-bottom: 25px; color: rgba(244,240,232,.76); font-size: 17px; line-height: 1.6; }
.command-line { display: inline-flex; overflow: hidden; margin-bottom: 28px; border: 1px solid rgba(244,240,232,.42); background: rgba(244,240,232,.08); }
.command-line code { padding: 14px 16px; color: #e8c8ad; font-family: var(--mono); font-size: 14px; }
.copy-command { padding: 0 15px; border: 0; border-left: 1px solid rgba(244,240,232,.42); color: var(--paper); background: transparent; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: background .2s, color .2s; }
.copy-command:hover { color: var(--ink); background: #e8c8ad; }
.join-banner .text-link { color: var(--paper); }
.join-banner-number { position: relative; align-self: end; color: rgba(244,240,232,.19); font-family: var(--display); font-size: clamp(120px, 21vw, 280px); font-style: italic; line-height: .65; }

.guide-page { background: var(--paper); }
.guide-header { position: relative; width: 100%; padding-block: 18px; border-bottom: 1px solid var(--line); background: var(--paper); }
.guide-header .site-nav { gap: clamp(18px, 2.4vw, 36px); }
.site-nav a.is-current { color: var(--orange); }
.site-nav a.is-current::after { transform: scaleX(1); background: var(--orange); }
.guide-hero { position: relative; display: grid; min-height: 500px; overflow: hidden; padding: clamp(72px, 10vw, 125px) clamp(24px, 15vw, 250px); align-items: end; color: var(--ink); isolation: isolate; }
.guide-hero::before { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(105deg, rgba(250,248,243,.91) 0%, rgba(250,248,243,.78) 50%, rgba(250,248,243,.24) 100%); }
.guide-hero-join { background: #bdcbbd url("assets/town-map.png") right 15% center / min(49%, 680px) auto no-repeat; }
.guide-hero-vote { background: #7f685f url("assets/overlook.png") right center / 59% auto no-repeat; }
.guide-hero-commands { background: #a07768 url("assets/streets.png") right center / 59% auto no-repeat; }
.guide-hero-gold { background: linear-gradient(120deg, #d8c58b, #9b7549); }
.guide-hero > div { max-width: 650px; }
.guide-hero .eyebrow { margin-bottom: 22px; }
.guide-back { margin-bottom: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: .04em; }
.guide-back a { border-bottom: 1px solid currentColor; }
.guide-hero h1 { margin-bottom: 22px; font-size: clamp(60px, 9vw, 126px); }
.guide-hero .hero-intro { margin-left: 0; color: var(--ink-soft); }
.guide-layout { display: grid; grid-template-columns: minmax(160px, .5fr) minmax(0, 1.4fr); gap: clamp(40px, 9vw, 150px); align-items: start; }
.guide-index { position: sticky; top: 26px; display: grid; gap: 2px; padding-top: 8px; }
.guide-index > p { margin: 0 0 10px; color: var(--orange); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.guide-index a { display: grid; grid-template-columns: 27px 1fr; gap: 6px; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 13px; transition: color .2s; }
.guide-index a:hover, .guide-index a.is-current { color: var(--orange); }
.guide-index span { font-family: var(--mono); font-size: 10px; }
.guide-content { max-width: 790px; }
.guide-content h2 { max-width: 680px; }
.guide-content > .lead { max-width: 660px; }
.guide-note { max-width: 600px; margin-top: 26px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.command-panel { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; max-width: 720px; margin-top: 35px; padding: 13px 14px 13px 18px; border: 1px solid var(--line); background: var(--cream); }
.command-panel > span { color: var(--ink-soft); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.command-panel code { color: var(--ink); font-family: var(--mono); font-size: clamp(16px, 2vw, 22px); }
.command-panel .copy-command { padding: 10px 12px; border: 1px solid var(--ink); color: var(--ink); }
.command-panel .copy-command:hover { color: var(--paper); background: var(--ink); }
.guide-next { display: flex; justify-content: space-between; gap: 25px; align-items: center; margin-top: 55px; padding-top: 20px; border-top: 1px solid var(--line); }
.guide-next > span { color: var(--ink-soft); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.guide-next a { display: inline-flex; gap: 18px; align-items: center; font-family: var(--display); font-size: 23px; }
.guide-next strong { font-family: var(--sans); font-size: 18px; transition: transform .2s; }
.guide-next a:hover strong { transform: translateX(4px); }
.guide-steps { display: grid; gap: 0; max-width: 690px; margin: 34px 0 36px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.guide-steps li { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.guide-steps li > span { color: var(--orange); font-family: var(--mono); font-size: 11px; }
.guide-steps p { margin: 0; color: var(--ink-soft); line-height: 1.55; }
.guide-steps code { padding: 2px 5px; color: var(--ink); background: #e8e1d3; font-family: var(--mono); font-size: .88em; }
.reward-card { display: grid; grid-template-columns: 1.25fr repeat(3, .75fr); gap: 8px; max-width: 690px; padding: 18px; color: var(--paper); background: var(--orange); }
.reward-card span { align-self: center; color: rgba(244,240,232,.82); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.reward-card strong { display: grid; min-height: 66px; padding: 10px; place-items: center; border: 1px solid rgba(244,240,232,.45); font-family: var(--display); font-size: clamp(17px, 1.9vw, 24px); font-weight: 600; text-align: center; }
.command-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; max-width: 720px; margin-top: 35px; background: var(--line); }
.command-list > div { min-height: 155px; padding: 25px; background: var(--cream); }
.command-list code { display: inline-block; margin-bottom: 15px; color: var(--orange); font-family: var(--mono); font-size: 19px; }
.command-list p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.gold-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; max-width: 750px; margin-top: 34px; }
.gold-grid > div { min-height: 200px; padding: 22px; border: 1px solid var(--line); background: #eee4bf; }
.gold-grid > div:nth-child(2) { background: #e8d497; }
.gold-grid > div:nth-child(3) { background: #dac179; }
.gold-grid span { color: var(--ink-soft); font-family: var(--mono); font-size: 10px; }
.gold-grid h3 { margin: 26px 0 10px; font-family: var(--display); font-size: 28px; line-height: 1; letter-spacing: -.03em; }
.gold-grid p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }

.news-page { background: var(--paper); }
.news-hero { position: relative; display: grid; min-height: 470px; overflow: hidden; padding: clamp(78px, 10vw, 140px) clamp(24px, 15vw, 250px); align-items: end; color: var(--paper); background: var(--ink); isolation: isolate; }
.news-hero::before, .news-hero::after { position: absolute; z-index: -1; content: ""; }
.news-hero::before { top: -50%; right: -6%; width: min(55vw, 780px); aspect-ratio: 1; border: 1px solid rgba(244,240,232,.18); border-radius: 50%; box-shadow: 0 0 0 58px rgba(244,240,232,.035), 0 0 0 117px rgba(244,240,232,.018); }
.news-hero::after { right: 10%; bottom: 20%; width: 7px; aspect-ratio: 1; border-radius: 50%; background: #e8c8ad; box-shadow: 100px -58px 0 2px rgba(232,200,173,.65), 231px 71px 0 0 rgba(232,200,173,.5), 332px -90px 0 3px rgba(232,200,173,.45); }
.news-hero > div { max-width: 800px; }
.news-hero .eyebrow { color: #e8c8ad; }
.news-hero h1 { margin-bottom: 20px; color: var(--paper); font-size: clamp(64px, 10vw, 142px); }
.news-hero > div > p:not(.eyebrow) { max-width: 420px; margin: 0; color: rgba(244,240,232,.72); font-size: 17px; line-height: 1.6; }
.news-scroll { position: absolute; right: clamp(24px, 5vw, 80px); bottom: 30px; margin: 0; color: rgba(244,240,232,.72); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.news-scroll span { display: inline-block; margin-left: 8px; color: #e8c8ad; font-size: 15px; }
.news-feed { display: grid; grid-template-columns: minmax(130px, .6fr) minmax(0, 1.8fr); gap: 30px clamp(30px, 8vw, 125px); }
.news-list { display: grid; gap: clamp(34px, 6vw, 90px); }
.news-card { display: grid; grid-template-columns: minmax(240px, .9fr) minmax(0, 1fr); min-height: 350px; color: var(--ink); background: var(--cream); transition: transform .25s, box-shadow .25s; }
.news-card:hover { box-shadow: 10px 10px 0 var(--orange); transform: translate(-4px, -4px); }
.news-card-feature { grid-template-columns: minmax(300px, 1.25fr) minmax(0, 1fr); min-height: 460px; background: #e7dfd1; }
.news-card-image { min-height: 300px; overflow: hidden; background: var(--ink); }
.news-card-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-card-image img { transform: scale(1.04); }
.news-card-map { background: #d4d6cf; }
.news-card-map img { object-fit: contain; }
.news-project-image { position: relative; display: grid; overflow: hidden; place-items: center; background: #e8c8ad; }
.news-project-image::before { position: absolute; z-index: 0; width: 130%; aspect-ratio: 1; border: 1px solid rgba(23,43,42,.23); border-radius: 50%; content: ""; box-shadow: 0 0 0 35px rgba(23,43,42,.045), 0 0 0 70px rgba(23,43,42,.04); }
.news-project-mark { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; color: var(--ink); text-align: center; }
.news-project-mark span, .news-project-mark em { font-family: var(--mono); font-size: 10px; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }
.news-project-mark strong { margin: 5px 0 -6px; font-family: var(--display); font-size: clamp(100px, 15vw, 180px); font-weight: 600; line-height: 1; letter-spacing: -.08em; }
.news-card-copy { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(27px, 4vw, 57px); }
.news-card-copy .kicker { margin-bottom: 18px; }
.news-card-copy h2 { margin-bottom: 17px; font-size: clamp(38px, 4.4vw, 68px); }
.news-card-copy > p:not(.kicker) { max-width: 420px; margin-bottom: 24px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.news-read { display: inline-flex; gap: 16px; align-items: center; margin-top: auto; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.news-read strong { color: var(--orange); font-family: var(--sans); font-size: 16px; transition: transform .2s; }
.news-card:hover .news-read strong { transform: translateX(4px); }

.article-heading { max-width: 1100px; margin: 0 auto; padding-bottom: clamp(42px, 6vw, 86px); }
.article-heading .guide-back { margin-bottom: 44px; }
.article-heading h1 { max-width: 1000px; margin-bottom: 25px; font-size: clamp(59px, 9vw, 132px); }
.article-standfirst { max-width: 630px; margin-bottom: 0; color: var(--ink-soft); font-size: clamp(17px, 2vw, 22px); line-height: 1.55; }
.article-hero-image { width: min(100% - 48px, 1240px); margin: 0 auto; background: var(--ink); }
.article-hero-image img { display: block; width: 100%; max-height: 720px; object-fit: cover; }
.article-map-image { padding: clamp(10px, 2vw, 24px); background: #d4d6cf; }
.article-map-image img { max-height: none; object-fit: contain; }
.article-map-image figcaption { padding: 10px 0 0; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.article-layout { display: grid; grid-template-columns: minmax(145px, .45fr) minmax(0, 1.1fr); gap: clamp(35px, 10vw, 160px); max-width: 1130px; margin: 0 auto; }
.article-meta { position: sticky; top: 28px; display: grid; align-content: start; gap: 6px; }
.article-meta span { margin-top: 18px; color: var(--orange); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.article-meta span:first-child { margin-top: 0; }
.article-meta strong { font-family: var(--display); font-size: 21px; line-height: 1.15; }
.article-body { max-width: 700px; }
.article-body > p { margin-bottom: 28px; color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.article-body blockquote { max-width: 670px; margin: 0 0 34px; padding: 0 0 0 24px; border-left: 2px solid var(--orange); color: var(--ink); font-family: var(--display); font-size: clamp(26px, 3.2vw, 43px); font-style: italic; line-height: 1.22; letter-spacing: -.035em; }
.article-body blockquote strong { color: var(--orange); font-weight: inherit; }
.article-gallery { display: grid; gap: 18px; margin: 40px 0 30px; }
.article-gallery-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.article-gallery figure { margin: 0; background: var(--ink); }
.article-gallery img { display: block; width: 100%; aspect-ratio: 1.42; object-fit: cover; }
.article-gallery figcaption { padding: 10px 11px; color: rgba(244,240,232,.78); font-family: var(--mono); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.article-body .article-highlight { margin-top: 40px; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); font-family: var(--display); font-size: clamp(25px, 3.2vw, 40px); font-style: italic; line-height: 1.25; }
.town-roles { display: grid; gap: 1px; margin: 35px 0; background: var(--line); }
.town-roles section { display: grid; grid-template-columns: 58px minmax(105px, .4fr) 1fr; gap: 18px; align-items: center; padding: 22px; background: var(--cream); }
.town-roles span { color: var(--orange); font-family: var(--mono); font-size: 10px; }
.town-roles h2 { margin: 0; font-size: 28px; }
.town-roles p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.article-project-visual { display: grid; grid-template-columns: repeat(2, 1fr); width: min(100% - 48px, 1240px); margin: 0 auto; color: var(--paper); background: var(--ink); }
.article-project-visual > div { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 300px; padding: 40px; border-right: 1px solid rgba(244,240,232,.22); text-align: center; }
.article-project-visual > div:last-child { border-right: 0; background: var(--orange); }
.article-project-visual span, .article-project-visual em { font-family: var(--mono); font-size: 10px; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }
.article-project-visual span { color: rgba(244,240,232,.68); }
.article-project-visual strong { margin: 6px 0 -6px; color: #e8c8ad; font-family: var(--display); font-size: clamp(100px, 15vw, 190px); font-weight: 600; line-height: 1; letter-spacing: -.08em; }
.article-project-visual > div:last-child strong { color: var(--paper); }
.future-project-list { display: grid; gap: 1px; margin: 35px 0; background: var(--line); }
.future-project-list section { display: grid; grid-template-columns: 58px minmax(130px, .55fr) 1fr; gap: 18px; align-items: center; padding: 23px; background: var(--cream); }
.future-project-list span { color: var(--orange); font-family: var(--mono); font-size: 10px; }
.future-project-list h2 { margin: 0; font-size: 28px; }
.future-project-list p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.builder-callout { margin-top: 45px; padding: clamp(26px, 5vw, 50px); color: var(--paper); background: var(--pine); }
.builder-callout .kicker { color: #e8c8ad; }
.builder-callout h2 { margin-bottom: 13px; color: var(--paper); font-size: clamp(42px, 5vw, 67px); }
.builder-callout > p:not(.kicker) { max-width: 570px; margin-bottom: 0; color: rgba(244,240,232,.75); font-size: 16px; line-height: 1.6; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; padding: 28px clamp(24px, 5vw, 80px); color: rgba(244,240,232,.8); background: var(--ink); font-family: var(--mono); font-size: 10px; letter-spacing: .04em; }
.brand-footer { color: var(--paper); }
.site-footer p { margin: 0; }
.site-footer p:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .site-header { padding-block: 18px; }
  .menu-toggle { position: relative; z-index: 2; display: grid; width: 42px; height: 42px; padding: 0; place-content: center; gap: 5px; border: 1px solid var(--ink); border-radius: 50%; color: var(--ink); background: transparent; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 16px; height: 1px; background: currentColor; transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }
  .site-nav { position: absolute; top: 10px; right: 14px; left: 14px; display: grid; gap: 20px; padding: 80px 25px 26px; border: 1px solid var(--ink); background: var(--paper); box-shadow: 0 10px 30px rgba(23,43,42,.1); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .2s, transform .2s; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav .nav-cta { display: inline-block; width: max-content; }
  .hero { min-height: 720px; }
  .hero-note { display: none; }
  .scroll-cue { bottom: 22px; }
  .intro, .explore, .nature { grid-template-columns: 1fr; }
  .intro-content, .explore-heading, .place-grid, .nature-image, .nature-copy { grid-column: auto; }
  .section-label { margin-bottom: 8px; }
  .intro-map { max-width: 500px; margin-top: 16px; }
  .place-grid { grid-template-columns: 1fr; }
  .community { grid-template-columns: 1fr; padding-inline: 11vw; }
  .community-seal { min-height: 230px; }
  .nature-image { min-height: 300px; }
  .join-banner { grid-template-columns: 1fr; padding-inline: 11vw; }
  .join-banner-number { display: none; }
  .guide-hero { min-height: 430px; padding: 76px 11vw 58px; }
  .guide-hero-join, .guide-hero-vote, .guide-hero-commands { background-position: 78% center; background-size: auto 100%; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-index { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 25px; padding: 0; }
  .guide-index > p { grid-column: 1 / -1; }
  .guide-content { max-width: none; }
  .command-panel { grid-template-columns: 1fr auto; gap: 11px; }
  .command-panel > span { grid-column: 1 / -1; }
  .reward-card { grid-template-columns: repeat(3, 1fr); }
  .reward-card span { grid-column: 1 / -1; }
  .news-hero { min-height: 410px; padding: 76px 11vw 58px; }
  .news-scroll { display: none; }
  .news-feed { grid-template-columns: 1fr; }
  .news-card, .news-card-feature { grid-template-columns: 1fr; }
  .news-card-image { min-height: 290px; }
  .news-card-feature .news-card-image { min-height: 350px; }
  .article-heading { padding-inline: 11vw; }
  .article-layout { grid-template-columns: 1fr; }
  .article-meta { position: static; grid-template-columns: repeat(2, auto); justify-content: start; column-gap: 20px; }
  .article-meta span { margin-top: 0; }
  .article-meta strong { margin-right: 22px; }
  .site-footer { grid-template-columns: 1fr; gap: 18px; }
  .site-footer p:last-child { text-align: left; }
}

@media (max-width: 480px) {
  .hero-actions { gap: 18px; flex-direction: column; }
  .hero { min-height: 680px; }
  .fact { padding: 22px; }
  .card-image { height: 270px; }
  .command-line { display: grid; grid-template-columns: 1fr; width: 100%; }
  .command-line .copy-command { min-height: 42px; border-top: 1px solid rgba(244,240,232,.42); border-left: 0; }
  .guide-index { grid-template-columns: 1fr; }
  .guide-index > p { grid-column: auto; }
  .command-panel { grid-template-columns: 1fr; }
  .command-panel .copy-command { width: 100%; min-height: 40px; }
  .guide-next { align-items: flex-start; flex-direction: column; gap: 10px; }
  .reward-card, .gold-grid, .command-list { grid-template-columns: 1fr; }
  .reward-card span { grid-column: auto; }
  .reward-card strong { min-height: 48px; }
  .news-hero { min-height: 390px; }
  .news-card-feature .news-card-image, .news-card-image { min-height: 235px; }
  .news-card-copy { min-height: 305px; padding: 26px; }
  .article-hero-image { width: 100%; }
  .article-map-image { padding: 8px; }
  .article-gallery-two { grid-template-columns: 1fr; }
  .article-meta { grid-template-columns: 1fr; gap: 4px; }
  .article-meta strong { margin-right: 0; margin-bottom: 12px; }
  .town-roles section { grid-template-columns: 1fr; gap: 8px; }
  .town-roles h2 { font-size: 31px; }
  .article-project-visual { grid-template-columns: 1fr; width: 100%; }
  .article-project-visual > div { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(244,240,232,.22); }
  .article-project-visual > div:last-child { border-bottom: 0; }
  .future-project-list section { grid-template-columns: 1fr; gap: 8px; }
  .future-project-list h2 { font-size: 31px; }
  .site-footer { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
