/* piratesbay.termi.cloud — warm dark editorial */

/* Metrics-matched Fallback-Fonts gegen CLS beim Async-Load. */
@font-face {
  font-family: "Inter Fallback";
  src: local("Arial");
  size-adjust: 107.4%;
  ascent-override: 90%;
  descent-override: 22.5%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "JetBrains Mono Fallback";
  src: local("Menlo");
  size-adjust: 100%;
  ascent-override: 94%;
  descent-override: 20%;
  line-gap-override: 0%;
}

:root {
  --bg: #14100D;
  --bg-1: #1C1815;
  --bg-2: #241E1A;
  --bg-3: #322820;
  --line: rgba(242, 232, 213, 0.09);
  --line-2: rgba(242, 232, 213, 0.18);
  --line-3: rgba(242, 232, 213, 0.28);
  --ink: #F2E8D5;
  --ink-1: #E1D5BB;
  --ink-2: #B8AC93;
  --ink-3: #8F8266;
  --ink-4: #6C6250;
  --accent: #C7A96B;
  --accent-1: #DFC58A;
  --accent-2: #9E844C;
  --highlight: rgba(199, 169, 107, 0.16);
  --display: "Inter", "Inter Fallback", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --serif: var(--display);
  --sans: "Inter", "Inter Fallback", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "JetBrains Mono Fallback", "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  --radius: 6px;
  --radius-sm: 3px;
  --measure: 740px;
  --gutter: clamp(26px, 5vw, 44px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  font-feature-settings: "ss01", "cv01", "cv11";
  position: relative;
  overflow-x: hidden;
}

/* Ambient warm glow behind hero */
body::before {
  content: "";
  position: fixed;
  top: -30vh;
  right: -20vw;
  width: 90vw;
  height: 90vw;
  max-width: 1200px;
  max-height: 1200px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(199, 169, 107, 0.10), rgba(199, 169, 107, 0.03) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Grain texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%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");
  mix-blend-mode: overlay;
}

a { color: var(--ink); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent); }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: calc(var(--measure) + 2 * var(--gutter));
  margin: 0 auto;
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  position: relative;
  z-index: 2;
}

/* ============ Masthead ============ */
.masthead {
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 16, 13, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.mark em { font-style: normal; color: var(--accent); }

.mast-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
}
.mast-nav > a {
  color: var(--ink-2);
  font-weight: 400;
  letter-spacing: -0.003em;
}
.mast-nav > a:hover { color: var(--ink); }

.lang {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 11px;
}
.lang a {
  padding: 3px 9px;
  color: var(--ink-3);
  border-radius: 3px;
  letter-spacing: 0.06em;
}
.lang a.is-active {
  color: var(--bg);
  background: var(--ink);
}
.lang a:hover:not(.is-active) { color: var(--ink); }
.lang .sep { display: none; }

@media (max-width: 620px) {
  .mast-nav { gap: 14px; }
  .mast-nav > a { font-size: 12px; }
  .mast-nav > a[data-hide-mobile] { display: none; }
}

/* ============ Hero ============ */
.hero {
  padding: clamp(72px, 14vw, 140px) 0 clamp(60px, 10vw, 100px);
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 36px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 9vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.038em;
  color: var(--ink);
  margin-bottom: 36px;
  max-width: 940px;
}
.hero h1 em {
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
  position: relative;
  padding: 0 4px;
  z-index: 1;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0.11em;
  height: 0.14em;
  background: var(--accent);
  opacity: 0.20;
  border-radius: 0;
  z-index: -1;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-1);
  max-width: 560px;
}
.hero-lede a {
  color: var(--accent);
  border-bottom: 1px solid rgba(199, 169, 107,0.35);
  padding-bottom: 1px;
}
.hero-lede a:hover { border-bottom-color: var(--accent); }

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 3px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.003em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  font-family: var(--sans);
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-1); color: var(--bg); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--ink-1);
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }
.btn svg { width: 14px; height: 14px; }

/* ============ Section framing ============ */
.section {
  padding: clamp(72px, 10vw, 110px) 0;
  position: relative;
  z-index: 2;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.section-title em { font-style: normal; color: var(--accent); }
.section-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ============ Work grid ============ */
.work {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  list-style: none;
}
@media (max-width: 720px) { .work { grid-template-columns: 1fr; } }

.wcard {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-1);
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  color: var(--ink);
  display: block;
}
.wcard:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  color: var(--ink);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.wcard-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.wcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.wcard:hover .wcard-media img { transform: scale(1.04); }

.wcard-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(20,16,13,0.85) 96%);
}

.wcard-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
}
.wcard-num {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(242, 232, 213, 0.78);
  letter-spacing: 0.08em;
}
.wcard-store {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 232, 213, 0.9);
  padding: 5px 10px 5px 8px;
  border: 1px solid rgba(242, 232, 213, 0.22);
  border-radius: 3px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.06);
  line-height: 1;
}
.wcard-store svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  display: block;
}
.wcard-nokka .wcard-store {
  color: rgba(44, 31, 10, 0.82);
  border-color: rgba(44, 31, 10, 0.28);
  background: rgba(0, 0, 0, 0.05);
}
.wcard-bottom { position: relative; }
.wcard-status {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.wcard-status::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.wcard-status.quiet { color: rgba(242, 232, 213, 0.55); }
.wcard-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 34px);
  letter-spacing: -0.028em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 10px;
}
.wcard-desc {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(242, 232, 213, 0.82);
  max-width: 40ch;
  margin-bottom: 16px;
}
.wcard-tags {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(242, 232, 213, 0.58);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.wcard-tags .arrow {
  margin-left: auto;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 20px;
  transition: transform 0.3s ease;
  line-height: 1;
}
.wcard:hover .wcard-tags .arrow { transform: translateX(6px); }

/* Card variants — full-bleed icon fills whole card */
.wcard-nightsail {
  background: linear-gradient(160deg, #050B1F 0%, #1F3A6E 55%, #6A94C9 100%);
}
.wcard-portsmart {
  background: linear-gradient(160deg, #0B5D8C 0%, #14A0A0 100%);
}
.wcard-portsmart .wcard-overlay {
  background: linear-gradient(180deg, transparent 55%, rgba(8,40,60,0.95) 96%);
}
.wcard-nightsail .wcard-media,
.wcard-cosmotrail .wcard-media,
.wcard-portsmart .wcard-media,
.wcard-piratesbay .wcard-media {
  display: block;
  padding: 0;
  inset: 0;
  overflow: hidden;
}
.wcard-nightsail .wcard-media img,
.wcard-cosmotrail .wcard-media img,
.wcard-portsmart .wcard-media img,
.wcard-piratesbay .wcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
}
.wcard-nightsail .wcard-media img {
  object-position: center 30%;
}
.wcard-nightsail .wcard-overlay {
  background: linear-gradient(180deg, transparent 55%, rgba(6,12,30,0.96) 96%);
}

.wcard-nokka {
  background: linear-gradient(155deg, #F4D35E 0%, #E5B84A 55%, #C99833 100%);
}
.wcard-nokka .wcard-media {
  display: grid;
  place-items: center;
  padding: 16% 24% 44%;
  overflow: hidden;
}
.wcard-nokka .wcard-media svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(38, 70, 83, 0.35));
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: none;
}
.wcard-nokka:hover .wcard-media svg { transform: translateY(-3px); }
.wcard-nokka .wcard-overlay { display: none; }
.wcard-nokka .wcard-num,
.wcard-nokka .wcard-desc,
.wcard-nokka .wcard-tags { color: rgba(44, 31, 10, 0.78); }
.wcard-nokka .wcard-title { color: #1A1207; }
.wcard-nokka .wcard-status { color: #1A1207; }
.wcard-nokka .wcard-status.quiet { color: rgba(44, 31, 10, 0.62); }
.wcard-nokka .wcard-tags .arrow { color: #1A1207; }

.wcard-cosmotrail {
  background: radial-gradient(120% 80% at 30% 0%, #2A1B5B 0%, #150A2E 60%, #0A0517 100%);
}
.wcard-cosmotrail .wcard-overlay {
  background: linear-gradient(180deg, transparent 45%, rgba(10,5,23,0.94) 96%);
}

.wcard-piratesbay {
  background: linear-gradient(160deg, #3A140A 0%, #6B2A15 55%, #A55536 100%);
  border-color: rgba(242, 232, 213, 0.22);
}
.wcard-piratesbay .wcard-overlay {
  background: linear-gradient(180deg, transparent 45%, rgba(30,12,6,0.94) 96%);
}

/* ============ About ============ */
.about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 720px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

.about-mono {
  aspect-ratio: 1;
  max-width: 220px;
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--line-2);
  border-radius: 3px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.about-mono span {
  font-family: var(--serif);
  font-weight: 500;
  font-style: normal;
  font-size: 108px;
  color: var(--accent);
  line-height: 1;
  z-index: 2;
  position: relative;
  letter-spacing: -0.04em;
}
.about-mono::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 4px;
  background: var(--accent);
  z-index: 1;
}

.prose p {
  font-size: 17px;
  color: var(--ink-1);
  margin-bottom: 16px;
  max-width: 64ch;
}
.prose p:last-of-type { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 500; }
.prose a { color: var(--accent); border-bottom: 1px solid rgba(199, 169, 107,0.3); }
.prose a:hover { border-bottom-color: var(--accent); }

.tech-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.tech-chips span {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  padding: 5px 10px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 3px;
}

/* ============ Contact ============ */
.contact {
  padding: clamp(70px, 10vw, 110px) 0 44px;
  border-top: 1px solid var(--line);
}
.contact-line {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 6.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.contact-line em { font-style: normal; color: var(--accent); }
.contact-line a {
  color: var(--accent);
  border-bottom: 2px solid rgba(199, 169, 107,0.35);
  padding-bottom: 6px;
  transition: border-bottom-color 0.2s ease;
}
.contact-line a:hover { border-bottom-color: var(--accent); }

.contact-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 40px;
}

/* ============ Footer ============ */
.foot {
  margin-top: auto;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  position: relative;
  z-index: 2;
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.foot a { color: var(--ink-3); }
.foot a:hover { color: var(--accent); }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============ Info page (cosmotrail, piratesbay) ============ */
.page { padding: clamp(30px, 5vw, 50px) 0 40px; position: relative; z-index: 2; }
.page-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-bottom: 40px;
}
.page-back:hover { color: var(--accent); }

.page-head {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.page-head img {
  width: 108px;
  height: 108px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.page-head h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
}
.page-head .subtitle {
  color: var(--ink-2);
  font-size: 17px;
  margin-bottom: 16px;
}
.page-head .status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.page-head .status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}
.page-head .status.quiet { color: var(--ink-3); }
.page-head .status.quiet::before { box-shadow: none; }

@media (max-width: 600px) {
  .page-head { grid-template-columns: 80px 1fr; gap: 20px; }
  .page-head img { width: 80px; height: 80px; border-radius: 18px; }
}

.lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 640px;
  margin: 16px 0 44px;
}
.lede em { font-style: normal; color: var(--accent); }

.shots {
  display: grid;
  gap: 14px;
  margin: 40px 0 48px;
}
.shots.grid-3 { grid-template-columns: repeat(3, 1fr); }
.shots.hero-plus { grid-template-columns: 1fr 1fr; }
.shots.hero-plus > :first-child { grid-column: 1 / -1; }
.shots img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  border: 1px solid var(--line);
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
@media (max-width: 560px) {
  .shots.grid-3, .shots.hero-plus { grid-template-columns: 1fr; }
  .shots.grid-3 { max-width: 320px; margin: 24px auto; }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  margin: 28px 0 48px;
}
.feature-grid > div {
  padding-left: 22px;
  border-left: 1px solid var(--line-2);
}
.feature-grid > div h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 8px;
}
.feature-grid > div p {
  color: var(--ink-1);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; gap: 24px; } }

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 64px 0 18px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.h2::before {
  content: "✽";
  color: var(--accent);
  font-size: 14px;
  transform: translateY(-0.35em);
  flex-shrink: 0;
}

.p { color: var(--ink-1); margin-bottom: 18px; max-width: 62ch; font-size: 16.5px; }

.cta-box {
  margin: 48px 0 8px;
  padding: 28px 30px;
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  border-radius: 3px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-box-text { flex: 1; min-width: 220px; }
.cta-box-text h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.cta-box-text p { color: var(--ink-2); font-size: 14px; margin: 0; }

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--bg) !important;
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 14px;
  transition: background 0.2s ease;
}
.btn-store:hover { background: var(--accent); color: var(--bg) !important; }
.btn-store .txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.btn-store .txt span { font-size: 10px; opacity: 0.85; letter-spacing: 0.04em; }
.btn-store .txt b { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg) !important;
  padding: 12px 24px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-play:hover { background: var(--accent-1); color: var(--bg) !important; transform: translateY(-1px); }

.play-block { margin: 28px 0 14px; }
.play-note {
  margin-top: 12px;
  color: var(--ink-3);
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.03em;
}

.contact-note {
  color: var(--ink-2);
  font-size: 14.5px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.contact-note a { color: var(--accent); border-bottom: 1px solid rgba(199, 169, 107,0.3); }

.page-foot {
  margin-top: 56px;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.page-foot a { color: var(--ink-3); }
.page-foot a:hover { color: var(--accent); }

::selection { background: var(--accent); color: var(--bg); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
