/* ================================================================
   ARPIART — Ink & Red Thread
   paper / ink / signature red · Fraunces + Newsreader + Plex Mono
   ================================================================ */

:root {
  --paper: #f5f1e8;
  --paper-deep: #ece6d8;
  --ink: #161310;
  --ink-soft: #3d382f;
  --red: #c22026;
  --red-deep: #8f1519;
  --hair: rgba(22, 19, 16, 0.16);
  --font-display: "Fraunces", serif;
  --font-body: "Newsreader", serif;
  --font-mono: "IBM Plex Mono", monospace;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 4;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.mono { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; }

em { font-style: italic; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 480; line-height: 1.02; }
h2 em, h3 em { color: var(--red); font-weight: 380; }

.section-eyebrow {
  color: var(--red);
  margin-bottom: 1.4rem;
  display: block;
}
.section-eyebrow-light { color: #e88a8d; }

/* ================= CURSOR ================= */
.cursor {
  opacity: 0;
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
  display: grid; place-items: center;
  mix-blend-mode: normal;
}
.cursor-label {
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.1em;
  color: var(--paper);
  opacity: 0; transition: opacity 0.2s;
  white-space: nowrap;
}
.cursor.is-hover { width: 44px; height: 44px; background: rgba(194, 32, 38, 0.85); }
.cursor.is-label { width: 74px; height: 74px; background: rgba(22, 19, 16, 0.88); }
.cursor.is-label .cursor-label { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ================= LOADER ================= */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink);
  display: grid; place-items: center;
  color: var(--paper);
}
.loader-inner { text-align: center; }
.loader-logo { width: 92px; }
.loader-mtn { stroke-dasharray: 300; stroke-dashoffset: 300; }
.loader-sun { transform-origin: 30px 26px; transform: scale(0); }
.loader-word { margin-top: 1rem; letter-spacing: 0.55em; text-indent: 0.55em; opacity: 0; }

/* ================= RED THREAD ================= */
.thread {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 3; pointer-events: none;
  overflow: visible;
}
.thread path {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.6px;
  vector-effect: non-scaling-stroke;
  opacity: 0.85;
}

/* ================= NAV ================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(2.4rem, 5vh, 4rem) var(--pad) 1rem;
  mix-blend-mode: normal;
  transition: transform 0.4s ease;
}
.nav.is-hidden { transform: translateY(-110%); }
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.3em;
}
.nav-logo svg { width: 26px; color: var(--ink); }
.nav.on-dark { color: var(--paper); }
.nav.on-dark .nav-logo svg { color: var(--paper); }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s ease;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  border: 1px solid currentColor; border-radius: 999px;
  padding: 0.45em 1.1em;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red); border-color: var(--red); color: var(--paper) !important; }

.burger {
  display: none;
  color: inherit;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 34px;
  flex-direction: column; justify-content: center; gap: 7px;
  z-index: 1001;
}
.burger span { height: 2px; width: 100%; background: currentColor; transition: transform 0.3s, opacity 0.3s; display: block; }
.burger.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.nav.menu-open { color: var(--paper); }
.nav.menu-open .nav-logo svg { color: var(--paper); }

.menu-overlay {
  position: fixed; inset: 0; z-index: 890;
  background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}
.menu-overlay.is-open { clip-path: inset(0 0 0% 0); }
.menu-overlay nav { display: flex; flex-direction: column; gap: 0.4rem; }
.menu-overlay a {
  font-family: var(--font-display); font-size: clamp(2.4rem, 9vw, 4rem);
  border-bottom: 1px solid rgba(245, 241, 232, 0.14);
  padding: 0.35rem 0;
}
.menu-overlay a em, .menu-overlay a:hover { color: var(--red); }
.menu-foot { margin-top: 3rem; opacity: 0.6; }

/* ================= HERO ================= */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--pad);
  overflow: hidden;
}
.hero-sun {
  position: absolute;
  top: 12%; right: 14%;
  width: clamp(90px, 16vw, 230px); height: clamp(90px, 16vw, 230px);
  background: var(--red);
  border-radius: 50%;
  z-index: -1;
}
.hero-title {
  font-weight: 560;
  font-size: clamp(4.6rem, 19.5vw, 17.5rem);
  letter-spacing: -0.03em;
  line-height: 0.86;
  text-transform: uppercase;
}
.hero-line { display: block; overflow: hidden; }
.hero-line-2 { margin-left: clamp(2rem, 14vw, 13rem); }
.hero-word { display: inline-block; }
.hero-dot { color: var(--red); font-style: normal; }
.hero-mtn {
  position: absolute;
  bottom: 17%; left: 50%;
  width: clamp(300px, 46vw, 640px);
  transform: translateX(-8%);
  color: var(--ink-soft);
  z-index: -1; opacity: 0.75;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; margin-top: clamp(2rem, 5vh, 4rem);
}
.hero-tag {
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-weight: 350;
  max-width: 24ch;
}
.hero-tag em { color: var(--red); }
.hero-loc { text-align: right; line-height: 1.9; color: var(--ink-soft); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: var(--pad);
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-scroll-line { width: 64px; height: 1px; background: var(--ink); display: inline-block; position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--red);
  animation: scrollhint 1.8s ease-in-out infinite;
}
@keyframes scrollhint { 0% { transform: translateX(-100%);} 55% { transform: translateX(0);} 100% { transform: translateX(100%);} }

/* ================= MARQUEE ================= */
.marquee {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  padding: 0.85rem 0;
  background: var(--paper);
  position: relative; z-index: 5;
}
.marquee-track { display: flex; white-space: nowrap; width: max-content; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  font-style: italic; font-weight: 380;
}

/* ================= MANIFESTO ================= */
.manifesto { padding: clamp(6rem, 14vh, 11rem) var(--pad); max-width: 1200px; }
.manifesto-text {
  font-size: clamp(1.9rem, 4.6vw, 3.9rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.14;
}
.manifesto-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-top: 3.6rem;
  max-width: 62rem;
}
.manifesto-cols p { color: var(--ink-soft); }
.manifesto-cols p::first-letter { color: var(--red); font-weight: 600; }

/* split reveal */
.split .split-line { display: block; overflow: hidden; }
.split .split-inner { display: block; }

/* ================= TOUR ================= */
.tour {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(6rem, 14vh, 10rem) 0 0;
  position: relative;
}
.tour-head { padding: 0 var(--pad); max-width: 1300px; }
.tour-title { text-transform: uppercase; }
.tour-big {
  display: block;
  font-size: clamp(2.9rem, 10.5vw, 9rem);
  font-weight: 540; letter-spacing: -0.02em; line-height: 0.94;
}
.tour-big-red {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
  margin-left: clamp(1rem, 6vw, 6rem);
}
.tour-year { display: block; margin-top: 1.4rem; color: #b3ab99; }
.tour-sub { max-width: 46ch; margin-top: 2.2rem; color: #cfc8b8; font-size: 1.12em; }
.tour-sub em { color: var(--paper); }

.abc-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245, 241, 232, 0.2);
  border-top: 1px solid rgba(245, 241, 232, 0.2);
  border-bottom: 1px solid rgba(245, 241, 232, 0.2);
  margin-top: clamp(3rem, 7vh, 5rem);
}
.abc-card {
  background: var(--ink);
  padding: clamp(1.6rem, 3vw, 3rem);
  position: relative;
  transition: background 0.4s ease;
}
.abc-card:hover { background: #221d16; }
.abc-card-red:hover { background: var(--red-deep); }
.abc-letter {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 600; line-height: 1;
  color: var(--red);
  display: block;
}
.abc-card h3 { font-size: 1.6rem; margin: 0.8rem 0 0.7rem; font-style: italic; }
.abc-card p { color: #b3ab99; font-size: 0.95em; max-width: 34ch; }

/* route — pinned horizontal */
.route-wrap { position: relative; }
.route-pin {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding: 4rem 0;
}
.route-label { padding: 0 var(--pad); color: #b3ab99; margin-bottom: 3rem; }
.route-hint { color: var(--red); }
.route-track { position: relative; }
.route-line {
  position: absolute; top: 50%; left: 0;
  width: 100%; height: 10px;
  transform: translateY(-50%);
  color: rgba(245, 241, 232, 0.35);
}
.route-line path { stroke: currentColor; }
.route-stops {
  display: flex; gap: clamp(3rem, 6vw, 6rem);
  list-style: none;
  padding: 0 var(--pad);
  width: max-content;
  will-change: transform;
}
.stop {
  min-width: 200px;
  position: relative;
  padding-top: 3.2rem;
}
.stop::before {
  content: "";
  position: absolute; top: 1.4rem; left: 2px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--paper);
  outline: 4px solid var(--ink);
}
.stop-final::before { background: var(--red); }
.stop-n { color: var(--red); display: block; margin-bottom: 0.5rem; }
.stop h4 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 430; white-space: nowrap; }
.stop p { color: #b3ab99; margin-top: 0.55rem; }
.stop-final h4 { color: var(--red); }
.route-note {
  padding: 0 var(--pad); margin-top: 3.4rem;
  color: #b3ab99; max-width: 60ch;
}
.route-note .mono { color: var(--paper); }
.route-note a { color: var(--red); border-bottom: 1px solid var(--red); }

/* ================= SOLD MAP ================= */
.soldmap {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(6rem, 14vh, 10rem) var(--pad);
  border-top: 1px solid rgba(245, 241, 232, 0.14);
  position: relative;
}
.soldmap-head { max-width: 1200px; }
.soldmap-title {
  font-size: clamp(2.3rem, 6.4vw, 5.6rem);
  font-weight: 420;
  max-width: 16ch;
}
.soldmap-sub { max-width: 52ch; margin-top: 1.8rem; color: #cfc8b8; }
.soldmap-sub .mono { color: var(--red); white-space: nowrap; }

.soldmap-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-top: clamp(3rem, 6vh, 5rem);
}
.map-canvas { position: relative; color: rgba(245, 241, 232, 0.5); }
.map-canvas svg { width: 100%; height: auto; display: block; }
.map-canvas .map-base { position: relative; z-index: 1; }
.map-dots { position: absolute; inset: 0; z-index: 2; }

.map-dot { cursor: pointer; }
.map-dot circle.core { fill: var(--red); transition: r 0.2s ease; }
.map-dot circle.halo {
  fill: none; stroke: var(--red); stroke-width: 1;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: halo 2.6s ease-out infinite;
}
@keyframes halo {
  0% { transform: scale(0.4); opacity: 0.9; }
  70% { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
.map-dot text {
  fill: var(--paper);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.map-dot:hover text, .map-dot.is-active text { opacity: 0.9; }
.map-dot.is-active circle.core { fill: var(--paper); }

.map-card { min-width: 0; }
.map-card-inner {
  background: var(--paper);
  color: var(--ink);
  padding: 1.1rem 1.1rem 1.3rem;
  max-width: 340px;
  margin-inline: auto;
  box-shadow: 14px 14px 0 var(--red);
  transform: rotate(1.2deg);
}
.map-card-imgwrap { overflow: hidden; aspect-ratio: 4 / 4.6; background: var(--paper-deep); }
.map-card-imgwrap img { width: 100%; height: 100%; object-fit: cover; }
.map-card-city { color: var(--red); margin-top: 0.95rem; }
.map-card-title { font-size: 1.9rem; font-weight: 460; margin-top: 0.2rem; }
.map-card-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 0.9rem; border-top: 1px solid var(--hair); padding-top: 0.8rem;
}
.map-card-nav button {
  background: none; border: 1px solid var(--ink);
  border-radius: 999px;
  width: 42px; height: 30px;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.map-card-nav button:hover { background: var(--red); border-color: var(--red); color: var(--paper); }

.soldmap-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245, 241, 232, 0.18);
  border: 1px solid rgba(245, 241, 232, 0.18);
  margin-top: clamp(3.5rem, 8vh, 6rem);
}
.stat {
  background: var(--ink);
  padding: 1.6rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.stat-n {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 540;
  color: var(--red);
  line-height: 1;
}
.stat-l { color: #b3ab99; }

/* ================= WORKS ================= */
.works { padding: clamp(6rem, 14vh, 11rem) var(--pad); }
.works-title { font-size: clamp(2.6rem, 7.5vw, 6.4rem); font-weight: 430; }
.works-sub { max-width: 52ch; margin-top: 1.6rem; color: var(--ink-soft); }

.works-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
  margin-top: clamp(3rem, 7vh, 5rem);
}
.work { grid-column: span 2; }
.work:nth-child(4n + 1) { grid-column: span 3; }
.work:nth-child(4n + 2) { grid-column: span 3; }
.work:nth-child(8n + 5) { transform: translateY(clamp(0.5rem, 2vw, 2rem)); }
.work-imgwrap {
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid var(--hair);
}
.work-imgwrap img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}
.work:hover .work-imgwrap img { transform: scale(1.045); }
.work figcaption { margin-top: 0.85rem; display: flex; flex-direction: column; gap: 0.3rem; }
.work h3 { font-size: 1.45rem; font-weight: 450; font-style: italic; }
.work .mono { color: var(--ink-soft); }

.works-aceo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(5rem, 11vh, 8rem);
  border-top: 1px solid var(--ink);
  padding-top: clamp(3rem, 7vh, 5rem);
}
.works-aceo-img { overflow: hidden; }
.works-aceo-img img { transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1); }
.works-aceo-img:hover img { transform: scale(1.04); }
.works-aceo-text h3 { font-size: clamp(1.9rem, 3.4vw, 3rem); font-weight: 420; margin-bottom: 1.2rem; }
.works-aceo-text p { color: var(--ink-soft); max-width: 44ch; }
.link-arrow {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.12em;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 0.25em;
}

/* ================= SKETCHBOOK ================= */
.sketchbook {
  background: var(--paper-deep);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: clamp(5rem, 12vh, 9rem) 0;
  overflow: hidden;
}
.sketch-head { padding: 0 var(--pad); }
.sketch-head h2 { font-size: clamp(2.6rem, 7.5vw, 6rem); font-weight: 430; }
.sketch-sub { margin-top: 1.2rem; color: var(--ink-soft); }
.sketch-strip { margin-top: clamp(2.5rem, 6vh, 4rem); cursor: grab; }
.sketch-strip:active { cursor: grabbing; }
.sketch-row {
  display: flex; gap: clamp(1.4rem, 3vw, 2.8rem);
  width: max-content;
  padding: 1.5rem var(--pad);
  will-change: transform;
}
.sheet {
  background: #fffdf7;
  padding: 0.8rem 0.8rem 1rem;
  box-shadow: 0 14px 34px rgba(22, 19, 16, 0.16);
  transform: rotate(var(--r, 0deg));
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  position: relative;
  flex-shrink: 0;
}
.sheet:hover { transform: rotate(0deg) translateY(-8px); box-shadow: 0 22px 44px rgba(22, 19, 16, 0.22); }
.sheet::before {
  content: "";
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 74px; height: 24px;
  background: rgba(194, 32, 38, 0.55);
  clip-path: polygon(4% 0, 96% 6%, 100% 100%, 0 92%);
}
.sheet img {
  width: clamp(200px, 24vw, 300px);
  height: clamp(240px, 29vw, 360px);
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
.sheet figcaption { margin-top: 0.7rem; color: var(--ink-soft); font-size: 0.62rem; }

/* ================= ABOUT ================= */
.about { padding: clamp(6rem, 14vh, 11rem) var(--pad); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
  max-width: 1350px;
}
.about-imgwrap { position: sticky; top: 6rem; }
.about-imgwrap img { border: 1px solid var(--hair); }
.about-imgcap { margin-top: 0.9rem; color: var(--ink-soft); }
.about-text h2 {
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  font-weight: 430;
  margin-bottom: 2rem;
}
.about-text p { color: var(--ink-soft); margin-bottom: 1.4rem; max-width: 58ch; }
.about-quote {
  border-left: 3px solid var(--red);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin: 2.4rem 0 0;
}
.about-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.about-quote cite { color: var(--ink-soft); font-style: normal; }

.awards { margin-top: clamp(4.5rem, 10vh, 8rem); max-width: 1350px; }
.awards-title { color: var(--red); margin-bottom: 1.6rem; }
.awards-list { list-style: none; }
.awards-list li {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.6rem;
  padding: 1.15rem 0.4rem;
  border-top: 1px solid var(--hair);
  transition: background 0.3s, padding-left 0.3s;
  align-items: baseline;
}
.awards-list li:last-child { border-bottom: 1px solid var(--hair); }
.awards-list li:hover { background: rgba(194, 32, 38, 0.05); padding-left: 1rem; }
.aw-year { color: var(--red); }
.aw-what { font-size: 1.05em; }

/* ================= CONTACT ================= */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(6rem, 14vh, 10rem) var(--pad) 2.4rem;
  position: relative;
  overflow: hidden;
}
.contact-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(4rem, 16vw, 14.5rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 0.88;
  display: flex; flex-direction: column;
}
.contact-word { display: block; overflow: hidden; }
.contact-word-red {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
  margin-left: clamp(2rem, 10vw, 10rem);
  transition: color 0.5s ease;
}
.contact-title:hover .contact-word-red { color: var(--red); }
.contact-sub { max-width: 46ch; margin-top: 2.6rem; color: #cfc8b8; }
.contact-links {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 5rem);
  margin-top: 3rem;
}
.contact-link {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-style: italic;
  display: flex; align-items: baseline; gap: 1rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.3);
  padding-bottom: 0.4rem;
  transition: border-color 0.3s, color 0.3s;
}
.contact-link .mono { color: var(--red); }
.contact-link:hover { color: var(--red); border-color: var(--red); }
.contact-foot {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  margin-top: clamp(4rem, 9vh, 7rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(245, 241, 232, 0.16);
  color: #8f8875;
}
.contact-legal a:hover { color: var(--red); }

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .soldmap-stage { grid-template-columns: 1fr; }
  .map-card { margin-top: 1rem; }
  .map-card-inner { max-width: 420px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-imgwrap { position: static; max-width: 480px; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-line-2 { margin-left: 8vw; }
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .hero-loc { text-align: left; }
  .hero-mtn { left: auto; right: -10%; transform: none; width: 78vw; bottom: 24%; }
  .abc-cards { grid-template-columns: 1fr; }
  .manifesto-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .work, .work:nth-child(4n + 1), .work:nth-child(4n + 2) { grid-column: span 1; transform: none; }
  .work:nth-child(3n + 1) { grid-column: span 2; }
  .works-aceo { grid-template-columns: 1fr; }
  .soldmap-stats { grid-template-columns: 1fr 1fr; }
  .awards-list li { grid-template-columns: 4rem 1fr; gap: 1rem; }
  .map-dot text { font-size: 20px; }
}

@media (max-width: 520px) {
  .works-grid { grid-template-columns: 1fr; }
  .work:nth-child(3n + 1) { grid-column: span 1; }
  .contact-links { flex-direction: column; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
