:root {
  --black: #0b0b0f;
  --ivory: #f3ede2;
  --amber: #e8b86d;
  --indigo: #2a2450;
  --muted: rgba(243, 237, 226, 0.72);
  --line: rgba(232, 184, 109, 0.28);
  --font-name: "Inter", system-ui, sans-serif;
  --font-sub: "Montserrat", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-name);
  background: var(--black);
  color: var(--ivory);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.atmosphere { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; animation: float 16s ease-in-out infinite; }
.glow-a { width: 50vw; height: 50vw; max-width: 640px; max-height: 640px; top: -15%; right: -10%; background: radial-gradient(circle, rgba(232,184,109,0.4), transparent 70%); }
.glow-b { width: 40vw; height: 40vw; bottom: 5%; left: -12%; background: radial-gradient(circle, rgba(42,36,80,0.55), transparent 70%); animation-delay: -6s; }
.grain { position: absolute; inset: 0; opacity: 0.06; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
@keyframes float { 0%,100%{transform:translate3d(0,0,0)} 50%{transform:translate3d(2%,-3%,0)} }

.site-header, main, .site-footer { position: relative; z-index: 1; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 6vw;
  background: rgba(11,11,15,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo { height: 56px; width: auto; max-width: min(420px, 70vw); }
.nav { display: flex; flex-wrap: wrap; gap: 0.35rem 1.15rem; font-family: var(--font-sub); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); align-items: center; }
.nav a { color: inherit; text-decoration: none; padding: 0.35rem 0; border-bottom: 1px solid transparent; }
.nav a:hover { color: var(--amber); }
.nav a[aria-current="page"] { color: var(--amber); border-bottom-color: var(--amber); }
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem 1.25rem;
  margin: 1.1rem 0 0.35rem;
  font-family: var(--font-sub); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.footer-nav a { color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: var(--amber); }

.hero {
  min-height: calc(100vh - 84px);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem;
  align-items: center; padding: 7vh 6vw 9vh;
}
.eyebrow { font-family: var(--font-sub); font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.1rem; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 500; line-height: 1.12; letter-spacing: -0.03em; max-width: 14ch; }
.lede { margin-top: 1.35rem; max-width: 40ch; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.hero-visual { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,0.45); }
.hero-visual img { width: 100%; height: min(62vh, 520px); object-fit: cover; }
.caption { position: absolute; left: 1rem; bottom: 1rem; font-family: var(--font-sub); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ivory); background: rgba(11,11,15,0.65); padding: 0.45rem 0.7rem; border-radius: 999px; backdrop-filter: blur(8px); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.9rem 1.4rem; border-radius: 999px; font-family: var(--font-sub); font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; border: 1px solid transparent; transition: 0.25s ease; }
.btn-primary { background: var(--amber); color: var(--black); font-weight: 600; }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost { border-color: var(--line); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

.section { padding: 6.5rem 6vw; border-top: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.2; }
.section-sub { margin-top: 0.9rem; color: var(--muted); max-width: 46ch; }

.mosaic { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 1.1rem; }
.tile { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: #111; min-height: 220px; }
.tile-wide { grid-row: span 2; min-height: 460px; }
.tile img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; transition: transform 0.6s ease; }
.tile:hover img { transform: scale(1.04); }
.tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1.1rem 1rem;
  background: linear-gradient(transparent, rgba(11,11,15,0.92));
  display: grid; gap: 0.25rem;
}
.tag { font-family: var(--font-sub); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); }
.tile strong { font-size: 1.15rem; font-weight: 500; }
.tile figcaption span:last-child { color: var(--muted); font-size: 0.92rem; }

.worlds { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.world { padding: 2rem 1.7rem; border-radius: 20px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(42,36,80,0.28), rgba(11,11,15,0.35)); min-height: 260px; }
.card-label { font-family: var(--font-sub); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.85rem; }
.world h3 { font-size: 1.35rem; font-weight: 500; margin-bottom: 0.9rem; }
.world p { color: var(--muted); }

.pillars { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.85rem; }
.pillars li { padding: 1.2rem 1rem; border-left: 2px solid var(--amber); background: rgba(243,237,226,0.04); display: grid; gap: 0.45rem; }
.pillars strong { font-family: var(--font-sub); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); }
.pillars span { color: var(--muted); font-size: 0.95rem; }

.closing { margin: 0 6vw 4rem; padding: 3.5rem 2.5rem; border-radius: 24px; border: 1px solid var(--line); background: radial-gradient(ellipse at 10% 0%, rgba(232,184,109,0.16), transparent 50%), rgba(17,17,22,0.9); }
.closing h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 500; letter-spacing: -0.03em; max-width: 16ch; margin-bottom: 0.9rem; }
.closing p { color: var(--muted); max-width: 42ch; margin-bottom: 1.5rem; }

.site-footer { padding: 2.5rem 6vw 3.5rem; text-align: center; color: var(--muted); border-top: 1px solid var(--line); }
.footer-logo { height: 110px; width: auto; max-width: min(280px, 70vw); margin: 0 auto 1rem; }
.footer-line { font-family: var(--font-sub); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; }
  .tile-wide { grid-row: auto; min-height: 280px; }
  .worlds, .pillars { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-header { flex-wrap: wrap; gap: 0.65rem; padding: 0.75rem 5vw; }
  .logo { height: 48px; max-width: min(360px, 78vw); }
  .nav { width: 100%; gap: 0.5rem 1rem; font-size: 0.66rem; }
}

.world-visual { padding: 0; overflow: hidden; display: flex; flex-direction: column; min-height: 0; }
.world-media { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.world-media img { width: 100%; height: 100%; object-fit: cover; }
.world-mark {
  position: absolute; left: 1rem; bottom: 1rem;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(11,11,15,0.55);
  border: 1px solid rgba(232,184,109,0.28);
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  overflow: hidden;
  padding: 4px;
}
.world-mark img,
.world-mark svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.mark-row .world-mark {
  width: 72px;
  height: 72px;
  position: relative;
  left: auto;
  bottom: auto;
  border-radius: 18px;
  padding: 6px;
}
.mark-row .world-mark img { width: 100%; height: 100%; object-fit: contain; }
.world-body { padding: 1.5rem 1.5rem 1.7rem; }
.world-visual:hover .world-media img { transform: scale(1.04); transition: transform 0.6s ease; }

/* Expression detail */
.expr-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  padding: 7rem 6vw 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.expr-hero img.banner {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.55);
}
.expr-hero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,15,0.25), rgba(11,11,15,0.92));
}
.expr-hero-content { position: relative; z-index: 1; max-width: 760px; }
.expr-hero-content .mark-row { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1rem; }
.expr-hero-content h1 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.15; }
.expr-hero-content .lede { color: var(--muted); margin-top: 1rem; max-width: 44ch; }
.expr-body { padding: 4rem 6vw 5rem; display: block; width: 100%; max-width: none; }
.expr-intro { max-width: none; width: 100%; }
.expr-intro h2 { max-width: none; }
.expr-body .projects-block { margin-top: 2.75rem; }
.expr-body .project-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.expr-body h2 { font-size: 1.5rem; font-weight: 500; margin-bottom: 0.9rem; }
.expr-body p { color: var(--muted); margin-bottom: 1rem; }
.expr-side {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(243,237,226,0.03);
  height: fit-content;
}
.expr-side ul { list-style: none; display: grid; gap: 0.75rem; margin-top: 0.75rem; }
.expr-side li { color: var(--muted); padding-left: 0.9rem; border-left: 2px solid var(--amber); }
.back-link { font-family: var(--font-sub); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); display: inline-block; margin-bottom: 1.2rem; }
.back-link:hover { color: var(--ivory); }
.world { cursor: pointer; text-decoration: none; color: inherit; display: block; transition: transform 0.3s ease, border-color 0.3s ease; }
.world:hover { transform: translateY(-4px); border-color: rgba(232,184,109,0.55); }




/* Ongoing projects carousel */
.carousel { margin-top: 0.5rem; }
.carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(17,17,22,0.65);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-track {
  display: flex;
  width: 100%;
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr auto;
  min-height: 360px;
  text-decoration: none;
  color: inherit;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  overflow: hidden;
}
.carousel-slide .slide-main {
  display: contents;
  text-decoration: none;
  color: inherit;
}
.carousel-slide .slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0 1.75rem 1.25rem;
  justify-content: flex-end;
  grid-column: 2;
  grid-row: 2;
  align-items: end;
}
.ks-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sub);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,184,109,0.45);
  padding-bottom: 0.15rem;
  width: fit-content;
}
.ks-link:hover { color: var(--ivory); border-bottom-color: var(--ivory); }
.carousel-slide:hover .world-media img { transform: scale(1.03); }
.carousel-slide .world-media {
  grid-column: 1;
  grid-row: 1 / -1;
  aspect-ratio: auto;
  min-height: 100%;
  height: 100%;
  border-radius: 0;
  align-self: stretch;
}
.carousel-slide .world-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.carousel-slide .world-body {
  grid-column: 2;
  grid-row: 1;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
}
.carousel-slide .world-body h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 500;
  margin: 0;
}
.carousel-slide .world-body p:last-child {
  color: var(--muted);
  margin: 0;
  max-width: 36ch;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.1rem;
}
.carousel-btn {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(17,17,22,0.8);
  color: var(--ivory);
  font-size: 1.05rem;
  cursor: pointer;
  transition: 0.2s ease;
}
.carousel-btn:hover { border-color: var(--amber); color: var(--amber); }
.carousel-dots { display: flex; gap: 0.45rem; }
.carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  background: rgba(243,237,226,0.28);
  cursor: pointer;
  padding: 0;
}
.carousel-dot.is-active { background: var(--amber); width: 1.35rem; }
@media (max-width: 800px) {
  .carousel-slide { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; }
  .carousel-slide .world-media { grid-column: 1; grid-row: 1; min-height: 220px; aspect-ratio: 16/9; height: auto; }
  .carousel-slide .world-body { grid-column: 1; grid-row: 2; padding: 1.35rem 1.2rem 1rem; }
  .carousel-slide .slide-actions {
    grid-column: 1;
    grid-row: 3;
    padding: 0 1.2rem 1.2rem;
    justify-content: stretch;
  }
  .carousel-slide .slide-actions .btn { flex: 1; }
}

.campaign-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin: 0 6vw;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(232,184,109,0.35);
  border-radius: 14px;
  background: rgba(232,184,109,0.08);
  font-family: var(--font-sub);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243,237,226,0.85);
}
.campaign-bar .btn { letter-spacing: 0.1em; }

/* FAQ */
.faq-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  max-width: none;
  width: 100%;
  display: grid;
  gap: 0.65rem;
}
.faq-list > li {
  width: 100%;
  margin: 0;
}
.faq-list details {
  border: 1px solid rgba(232,184,109,0.22);
  border-radius: 14px;
  background: rgba(17,17,22,0.72);
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-sub);
  font-size: 1.1rem;
  color: var(--amber);
  flex-shrink: 0;
}
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}
.faq-list details p a {
  color: var(--amber);
}
.faq-list details p + p { padding-top: 0.65rem; }

.closing-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.contact-panel {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232,184,109,0.22);
  display: none;
  max-width: 560px;
}
.contact-panel.is-open { display: block; }
.contact-panel h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--ivory);
}
.contact-lead {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1.1rem;
  max-width: none;
}
.contact-form {
  display: grid;
  gap: 0.85rem;
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-sub);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243,237,226,0.7);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-family: var(--font-body);
  font-size: 0.98rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ivory);
  background: rgba(8,8,12,0.65);
  border: 1px solid rgba(232,184,109,0.28);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  width: 100%;
  box-sizing: border-box;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(232,184,109,0.65);
}
.contact-alt {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(232,184,109,0.14);
}
.contact-alt h4 {
  margin: 0 0 0.65rem;
  font-family: var(--font-sub);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.contact-email {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-email strong {
  color: var(--ivory);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.contact-email .note {
  font-size: 0.82rem;
  color: rgba(243,237,226,0.45);
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.social-chip {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(243,237,226,0.55);
  border: 1px solid rgba(232,184,109,0.22);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  pointer-events: none;
}
.social-chip.is-soon::after {
  content: " · soon";
  color: var(--amber);
  letter-spacing: 0.08em;
}
.contact-success {
  display: none;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(232,184,109,0.35);
  background: rgba(232,184,109,0.08);
  color: var(--ivory);
  line-height: 1.55;
}
.contact-panel.is-sent .contact-form { display: none; }
.contact-panel.is-sent .contact-success { display: block; }
.closing.is-contact-open .closing-actions .btn-primary {
  opacity: 0.85;
}

/* Project cards (home + expressions) */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
}
.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(232,184,109,0.28);
  background: rgba(17,17,22,0.72);
  min-height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,184,109,0.55);
}
.project-card-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  min-height: 0;
}
.project-card-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0b0b0f;
}
.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.project-card:hover .project-card-media img { transform: scale(1.04); }
.project-card-body {
  padding: 1.15rem 1.2rem 1.2rem;
  display: grid;
  gap: 0.4rem;
}
.project-card-body h3 { margin: 0; font-size: 1.2rem; font-weight: 500; }
.project-card-body p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.5; }
.project-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  align-items: center;
  padding: 0 1.2rem 1.2rem;
}
.project-card-actions .card-cta {
  font-family: var(--font-sub);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
}
.project-card-actions .ks-link {
  font-family: var(--font-sub);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,184,109,0.45);
  padding-bottom: 0.1rem;
}
.project-card-actions .card-cta:hover,
.project-card-actions .ks-link:hover { color: var(--ivory); }


.expr-intro h2 { margin-bottom: 0.85rem; }
.expr-intro p { margin: 0 0 1rem; max-width: 68ch; }
.expr-intro p:last-child { margin-bottom: 0; }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.1rem 0 0; }
.chip {
  font-family: var(--font-sub);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243,237,226,0.75);
  border: 1px solid rgba(232,184,109,0.35);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
