/* ============================================
   vert maps — design tokens
   ============================================ */
:root {
  --paper: #FAF7F0;
  --paper-warm: #F3EEE3;
  --stone: #E8E2D3;
  --ink: #211F1B;
  --ink-soft: #4B4940;
  --line: rgba(33, 31, 27, 0.12);

  --lime: #8FAE3B;
  --lime-deep: #5E7A2A;
  --amber: #C98935;
  --blue: #4D87A0;

  --footer-bg: #211F1B;

  --serif: "Young Serif", Georgia, serif;
  --sans: "Roboto", -apple-system, sans-serif;

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 26px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; line-height: 1.55; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

em { font-style: italic; }

::selection { background: var(--lime); color: var(--ink); }

:focus-visible {
  outline: 2.5px solid var(--lime-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* subtle paper grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin: 0 0 0.9rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--lime-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-small { padding: 0.6rem 1.3rem; font-size: 0.85rem; background: var(--ink); color: var(--paper); }
.btn-small:hover { background: var(--lime-deep); }
.btn-dark { background: var(--paper); color: var(--ink); }
.btn-dark:hover { background: var(--lime); }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem clamp(1.5rem, 4vw, 3.5rem);
  background: rgba(250, 247, 240, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.logo-mark { display: flex; align-items: center; }
.logo-img { height: 26px; width: auto; display: block; }

.site-nav { display: flex; gap: 2.1rem; }
.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--lime-deep);
  transition: width 0.25s var(--ease);
}
.site-nav a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--lime-deep); }

@media (max-width: 860px) {
  .site-nav { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3.5rem) 5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.04;
  margin-bottom: 1.6rem;
}
.hero-copy h1 em { color: var(--lime-deep); font-style: normal; }
.hero-sub {
  max-width: 480px;
  font-size: 1.08rem;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-art { position: relative; }
.hero-poster {
  border-radius: var(--radius-m);
  box-shadow: 0 40px 80px -30px rgba(33,31,27,0.35), 0 4px 20px rgba(33,31,27,0.08);
  transform: rotate(1.2deg);
  border: 1px solid rgba(255,255,255,0.4);
}

.hero-profile {
  width: 100%;
  height: 70px;
  color: var(--line);
  display: block;
  margin-top: -1rem;
}
.hero-profile polyline {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: draw 2.4s var(--ease) 0.3s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 2.5rem; }
  .hero-art { order: -1; }
  .hero-poster { transform: none; max-width: 420px; margin: 0 auto; }
}

/* ============================================
   Stat strip
   ============================================ */
.strip {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
  padding: 2.6rem clamp(1.5rem, 4vw, 3.5rem);
  background: var(--stone);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.strip-num { font-family: var(--serif); font-size: 1.9rem; }
.strip-label { font-size: 0.8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.3rem; }

/* ============================================
   Section heads (shared)
   ============================================ */
.section-head {
  max-width: 640px;
  margin: 0 0 3.5rem;
  text-align: left;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
}
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.1; margin-bottom: 1.1rem; }
.section-sub { font-size: 1.02rem; max-width: 540px; }

section { padding-top: clamp(4rem, 8vw, 6.5rem); padding-bottom: clamp(1rem,2vw,2rem); }

/* ============================================
   Collection grid
   ============================================ */
.collection { max-width: 1400px; margin: 0 auto; padding-left: 0; padding-right: 0; }
.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem) 1rem;
}
.poster-card {
  background: var(--paper-warm);
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.poster-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(33,31,27,0.22);
}
.poster-thumb {
  position: relative;
  padding: 1.5rem 1.5rem 0;
  background: var(--paper-warm);
}
.poster-img {
  width: 100%;
  display: block;
  border-radius: var(--radius-s);
  box-shadow: 0 20px 40px -18px rgba(33,31,27,0.3);
  transition: transform 0.6s var(--ease);
}
.poster-card:hover .poster-img { transform: scale(1.015); }
.poster-info { padding: 1.5rem 1.6rem 1.7rem; }
.poster-title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.8rem; margin-bottom: 0.25rem; }
.poster-title-row h3 { font-size: 1.35rem; }
.poster-badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  background: var(--stone);
  white-space: nowrap;
}
.poster-badge::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent, var(--lime));
  margin-right: 0.45rem;
}
.poster-region { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.poster-stats { display: flex; gap: 1.4rem; list-style: none; padding: 0; margin: 0 0 1.3rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.poster-stats li { display: flex; flex-direction: column; }
.poster-stats strong { font-size: 0.98rem; font-weight: 500; }
.poster-stats span { font-size: 0.72rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 0.15rem; }
.poster-foot { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--serif); font-size: 1.1rem; }

@media (max-width: 980px) {
  .poster-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ============================================
   Room / mockup section
   ============================================ */
.room {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.5rem, 4vw, 3.5rem);
}
.room img { border-radius: var(--radius-m); box-shadow: 0 30px 60px -25px rgba(33,31,27,0.25); }
.room-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 1.1rem; line-height: 1.15; }
.room-copy p { max-width: 420px; }

@media (max-width: 900px) {
  .room { grid-template-columns: 1fr; }
}

/* ============================================
   Details (text left, images right)
   ============================================ */
.details {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.5rem, 4vw, 3.5rem);
}
.details-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 1.1rem; line-height: 1.15; }
.details-copy p { max-width: 420px; }
.details-art { display: flex; flex-direction: column; gap: 1.2rem; }
.details-art img {
  width: 100%;
  border-radius: var(--radius-m);
  box-shadow: 0 30px 60px -25px rgba(33,31,27,0.25);
  display: block;
}

@media (max-width: 900px) {
  .details { grid-template-columns: 1fr; }
  .details-copy { order: -1; }
}

/* ============================================
   Process
   ============================================ */
.process-outer { padding: 0 clamp(1.5rem, 4vw, 3.5rem); }
.process { background: var(--ink); color: var(--paper); border-radius: var(--radius-l); max-width: 1400px; margin: 0 auto; padding: clamp(4rem,8vw,6.5rem) 0; }
.process .eyebrow { color: var(--lime); }
.process .section-head h2 { color: var(--paper); }
.process .section-head p { color: rgba(250,247,240,0.65); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(250,247,240,0.12);
  margin: 0 clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.process-step {
  background: var(--ink);
  padding: 2.2rem 1.8rem;
}
.process-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  border: 1px solid rgba(143,174,59,0.4);
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 1.3rem;
}
.process-step h3 { color: var(--paper); font-size: 1.2rem; margin-bottom: 0.7rem; line-height: 1.25; }
.process-step p { color: rgba(250,247,240,0.62); font-size: 0.93rem; }

@media (max-width: 1180px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .process-grid { grid-template-columns: 1fr; }
  .process { border-radius: var(--radius-m); }
}

/* ============================================
   Vote
   ============================================ */
.vote { max-width: 1400px; margin: 0 auto; }
.vote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem) 1rem;
}
.vote-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow .3s var(--ease);
}
.vote-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(33,31,27,0.2); }
.vote-plank {
  aspect-ratio: 16/9;
  min-height: 140px;
  background: #9da988;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vote-profile { width: 82%; height: 70%; color: var(--paper); display: block; }
.vote-info { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.3rem 0.9rem; }
.vote-text h3 { font-size: 1.12rem; margin-bottom: 0.2rem; }
.vote-text p { font-size: 0.82rem; }
.vote-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  color: var(--ink-soft);
}
.vote-btn svg { width: 16px; height: 16px; }
.vote-btn .vote-count { font-size: 0.78rem; font-weight: 500; }
.vote-btn:hover { border-color: var(--lime-deep); transform: translateY(-1px); }
.vote-btn.voted { background: var(--lime); border-color: var(--lime-deep); color: var(--ink); }
.vote-btn.voted svg { color: var(--ink); }

.vote-bar { height: 4px; background: var(--line); margin: 0 1.3rem 1.3rem; border-radius: 100px; overflow: hidden; }
.vote-bar-fill { height: 100%; width: var(--pct); background: var(--lime-deep); border-radius: 100px; transition: width 0.6s var(--ease); }

.vote-card-suggest {
  background: transparent;
  border: 1.5px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.suggest-inner { padding: 2rem 1.6rem; text-align: center; }
.suggest-inner h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.suggest-inner p { font-size: 0.86rem; margin-bottom: 1.3rem; }

@media (max-width: 980px) {
  .vote-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .vote-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ============================================
   Commission
   ============================================ */
.commission { max-width: 1400px; margin: 0 auto; padding-bottom: clamp(5rem, 9vw, 7rem); }
.commission-card {
  background: var(--stone);
  border-radius: var(--radius-l);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  margin: 0 clamp(1.5rem, 4vw, 3.5rem);
}
.commission-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 1.1rem; line-height: 1.12; }
.commission-copy p { max-width: 460px; margin-bottom: 1rem; }
.commission-note { font-size: 0.88rem; font-style: italic; margin-bottom: 1.8rem !important; }

.commission-list { display: flex; flex-direction: column; gap: 1.4rem; justify-content: center; }
.commission-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.commission-item span {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--lime-deep);
  flex-shrink: 0;
  width: 2rem;
}
.commission-item p { font-size: 0.95rem; padding-top: 0.1rem; }

@media (max-width: 900px) {
  .commission-card { grid-template-columns: 1fr; }
}

/* ============================================
   About
   ============================================ */
.about { max-width: 1400px; margin: 0 auto; padding-bottom: clamp(5rem, 9vw, 7rem); }
.about-card {
  background: var(--stone);
  border-radius: var(--radius-l);
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: center;
  gap: 3rem;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  margin: 0 clamp(1.5rem, 4vw, 3.5rem);
}
.about-art img {
  width: 73%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-m);
  display: block;
  box-shadow: 0 20px 40px -18px rgba(33,31,27,0.25);
}
.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 1.1rem; line-height: 1.12; }
.about-copy p { max-width: 480px; margin-bottom: 1.6rem; }

.about-socials { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.about-socials a {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.about-socials a:hover { color: var(--ink); text-decoration-color: var(--ink); }

@media (max-width: 900px) {
  .about-card { grid-template-columns: 1fr; }
  .about-art img { width: 66%; max-width: 240px; margin: 0 auto; }
  .about-socials { justify-content: center; }
}

/* ============================================
   Sign-off
   ============================================ */
.sign-off {
  text-align: center;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem) clamp(3rem, 6vw, 4.5rem);
  max-width: 1400px;
  margin: 0 auto;
}
.sign-off p {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--ink-soft);
  font-style: normal;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--footer-bg);
  color: var(--paper);
  padding: 3.5rem clamp(1.5rem, 4vw, 3.5rem) 2rem;
}
.footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(250,247,240,0.15); }
.logo-mark-footer .logo-img { height: 26px; }
.footer-tag { font-size: 0.88rem; color: rgba(250,247,240,0.55); }
.footer-bottom { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 1.6rem; font-size: 0.84rem; color: rgba(250,247,240,0.55); }
.footer-bottom a:hover { color: var(--paper); }

@media (max-width: 600px) {
  .footer-top { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-profile polyline { animation: none; stroke-dashoffset: 0; }
  .btn, .poster-card, .vote-card { transition: none; }
}
