/*
Theme Name: Caputi Landing
Theme URI: https://caputi-music.com/
Author: Caputi Music
Description: A standalone one-page artist press kit and landing page theme for Caputi.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: caputi-landing
*/

:root {
  --bg: #050504;
  --paper: #070706;
  --ink: #ead8bd;
  --muted: #c2a783;
  --faint: rgba(234, 216, 189, 0.22);
  --line: rgba(234, 216, 189, 0.68);
  --orange: #ff4b0b;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #020202;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 16%, rgba(234, 216, 189, 0.07), transparent 24rem),
    radial-gradient(circle at 10% 78%, rgba(255, 75, 11, 0.05), transparent 22rem);
}

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

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

.caputi-site {
  display: grid;
  gap: clamp(18px, 3vw, 40px);
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 26px);
}

.poster {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  border: 1px solid var(--line);
  padding: clamp(28px, 4.7vw, 70px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.015)),
    var(--paper);
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 14px solid rgba(0, 0, 0, 0.28);
}

.poster-topline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto minmax(80px, 1fr) auto auto auto;
  gap: clamp(14px, 3vw, 34px);
  align-items: center;
  color: var(--ink);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.36em;
  line-height: 1.4;
  text-transform: uppercase;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink);
}

.plus {
  color: var(--muted);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.rule,
.section-rule {
  display: block;
  height: 1px;
  background: var(--line);
}

.globe {
  position: relative;
  width: 48px;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.globe::before,
.globe::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  border-radius: 50%;
}

.globe::after {
  inset: 50% 4px auto;
  height: 1px;
  border: 0;
  background: var(--ink);
  box-shadow: 0 -10px 0 var(--ink), 0 10px 0 var(--ink);
}

.artist-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
  margin-top: clamp(70px, 9vw, 138px);
}

.artist-copy {
  display: grid;
  align-content: start;
  min-height: 720px;
}

.brand-mark,
.release-logo,
.connect-logo {
  width: clamp(170px, 22vw, 280px);
  margin-bottom: clamp(54px, 8vw, 86px);
  filter: invert(87%) sepia(18%) saturate(520%) hue-rotate(346deg) brightness(98%) contrast(92%);
}

.spaced,
.poster p,
.poster li,
.poster em,
.poster span,
.poster a {
  color: var(--ink);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.85;
  text-transform: uppercase;
}

.spaced {
  margin: 0 0 clamp(36px, 5vw, 66px);
  letter-spacing: 0.52em;
}

.accent-line {
  display: block;
  width: 40px;
  height: 3px;
  margin-bottom: clamp(72px, 10vw, 120px);
  background: var(--orange);
}

.accent-line.small {
  width: 32px;
  height: 2px;
  margin: 24px 0 0;
}

.poster h1,
.poster h2,
.poster h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.poster h1,
.poster h2 {
  margin-bottom: 24px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  letter-spacing: 0.34em;
}

.artist-copy article p {
  max-width: 330px;
}

.portrait-stage {
  position: relative;
  min-height: 900px;
}

.portrait {
  position: relative;
  z-index: 1;
  width: min(100%, 650px);
  margin-left: auto;
  object-fit: cover;
}

.moon {
  position: absolute;
  z-index: 2;
  display: block;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle at 20% 28%, rgba(234, 216, 189, 0.92), rgba(234, 216, 189, 0.34) 22%, transparent 48%),
    #020202;
  box-shadow: inset 18px 0 36px rgba(234, 216, 189, 0.12);
}

.moon-large {
  left: -120px;
  bottom: 138px;
  width: clamp(150px, 20vw, 240px);
  aspect-ratio: 1;
}

.corner-line {
  position: absolute;
  left: -210px;
  bottom: 220px;
  width: 280px;
  height: 180px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.corner-line::after {
  content: "";
  position: absolute;
  right: -106px;
  bottom: -80px;
  width: 1px;
  height: 210px;
  background: var(--line);
}

.orbit-dot {
  position: absolute;
  z-index: 3;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
}

.orbit-dot.one {
  left: -135px;
  bottom: 350px;
}

.orbit-dot.two {
  left: -20px;
  bottom: 346px;
}

.artist-footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1fr;
  gap: clamp(34px, 8vw, 110px);
  align-items: start;
  margin-top: -90px;
  padding-top: clamp(44px, 6vw, 76px);
}

.artist-footer-grid > div {
  min-height: 210px;
}

.vertical-divider {
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 5vw, 64px);
}

.orbit-mini,
.orbit-panel {
  position: relative;
  display: block;
  width: min(100%, 250px);
  aspect-ratio: 3 / 1;
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit-mini::before,
.orbit-panel::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid var(--faint);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(234, 216, 189, 0.08), 0 0 0 36px rgba(234, 216, 189, 0.06);
}

.orbit-mini::after,
.orbit-panel::after {
  content: "";
  position: absolute;
  top: 42%;
  left: 44%;
  width: 24px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
}

.release-head {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
  margin-top: clamp(90px, 12vw, 150px);
}

.release-head h2,
.connect-hero h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  letter-spacing: 0.52em;
}

.release-head .spaced {
  margin-bottom: 28px;
  letter-spacing: 0.42em;
}

.section-rule {
  width: min(100%, 410px);
  margin: 0 0 28px;
}

.release-board {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: clamp(44px, 7vw, 92px);
  margin-top: clamp(44px, 6vw, 76px);
}

.cover-stack {
  display: grid;
  gap: 14px;
  align-content: start;
  padding-left: 40px;
}

.cover-link {
  display: block;
  overflow: hidden;
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid var(--faint);
  transition: border-color 180ms ease, transform 180ms ease;
}

.cover-link:hover,
.release-row:hover,
.platform-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.cover-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-list {
  display: grid;
}

.release-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 150px;
  border-top: 1px solid var(--faint);
  transition: border-color 180ms ease, transform 180ms ease;
}

.release-row:last-child {
  border-bottom: 1px solid var(--faint);
}

.release-row strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.1rem, 2.3vw, 1.75rem);
  letter-spacing: 0.42em;
  line-height: 1.2;
  text-transform: uppercase;
}

.release-row em {
  display: block;
  font-style: normal;
}

.release-row i {
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 24px;
  background: var(--orange);
}

.release-row b {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.more-link {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  margin-top: 38px;
}

.more-link span {
  width: 52px;
  height: 2px;
  background: var(--orange);
}

.more-link span::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  margin: -6px 0 0 auto;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: rotate(45deg);
}

.connect-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  margin-top: clamp(74px, 11vw, 150px);
}

.connect-logo {
  margin-bottom: 74px;
}

.planet-art {
  position: relative;
  min-height: 520px;
}

.planet {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(100%, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 25%, rgba(234, 216, 189, 0.96), rgba(234, 216, 189, 0.44) 20%, rgba(234, 216, 189, 0.12) 38%, transparent 56%),
    #020202;
}

.orbit {
  position: absolute;
  right: 30px;
  bottom: 118px;
  width: min(90%, 580px);
  aspect-ratio: 1;
  border: 1px solid var(--faint);
  border-radius: 50%;
}

.orbit-b {
  right: 78px;
  bottom: 168px;
  width: min(76%, 460px);
  opacity: 0.6;
}

.star,
.star-card::before {
  position: absolute;
  content: "";
  width: 54px;
  aspect-ratio: 1;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 1px 100% no-repeat,
    linear-gradient(90deg, var(--ink), var(--ink)) center / 100% 1px no-repeat;
  transform: rotate(45deg);
}

.star {
  top: 64px;
  left: 38%;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(56px, 8vw, 94px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.platform-card {
  display: grid;
  gap: 26px;
  min-height: 230px;
  align-content: center;
  justify-items: center;
  border-right: 1px solid var(--line);
  padding: 26px 18px;
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.platform-card:last-child {
  border-right: 0;
}

.platform-card:hover {
  background: rgba(255, 75, 11, 0.08);
}

.platform-card strong {
  display: grid;
  place-items: center;
  width: 76px;
  aspect-ratio: 1;
  color: #0b0907;
  background: var(--ink);
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.platform-card em {
  font-style: normal;
  overflow-wrap: anywhere;
}

.orbit-join {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 0.8fr) 120px;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-top: clamp(44px, 7vw, 78px);
  padding-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.orbit-panel {
  width: 100%;
  max-width: 460px;
  border-radius: 8px;
}

.orbit-join a {
  display: inline-block;
  margin-top: 22px;
}

.mailing-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.mailing-form label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  line-height: 1.6;
  text-transform: uppercase;
}

.mailing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--line);
}

.mailing-row input,
.mailing-row button {
  min-height: 52px;
  border: 0;
  border-radius: 0;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mailing-row input {
  min-width: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 16px;
}

.mailing-row input::placeholder {
  color: rgba(234, 216, 189, 0.52);
}

.mailing-row button {
  cursor: pointer;
  background: var(--ink);
  color: #090705;
  padding: 0 22px;
}

.form-message {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.star-card {
  position: relative;
  display: block;
  width: 112px;
  height: 170px;
  border: 1px solid var(--line);
}

.star-card::before {
  top: 56px;
  left: 28px;
}

.poster-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px, 6vw, 70px);
  margin-top: clamp(42px, 7vw, 78px);
  padding-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid var(--line);
}

.poster-footer span {
  border-right: 1px solid var(--line);
}

.poster-footer span:last-child {
  border-right: 0;
}

@media (max-width: 980px) {
  .poster {
    min-height: auto;
  }

  .poster-topline {
    grid-template-columns: auto auto 1fr auto;
  }

  .poster-topline a:not(:first-of-type),
  .poster-topline span:nth-last-child(2) {
    display: none;
  }

  .artist-layout,
  .release-head,
  .release-board,
  .connect-hero,
  .artist-footer-grid,
  .orbit-join {
    grid-template-columns: 1fr;
  }

  .artist-copy {
    min-height: auto;
  }

  .portrait-stage {
    min-height: auto;
  }

  .portrait {
    margin: 0;
    width: 100%;
  }

  .moon-large,
  .corner-line,
  .orbit-dot {
    display: none;
  }

  .artist-footer-grid {
    margin-top: 0;
  }

  .vertical-divider {
    border-left: 0;
    padding-left: 0;
  }

  .cover-stack {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0;
  }

  .cover-link {
    width: 100%;
  }

  .planet-art {
    min-height: 420px;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .caputi-site {
    padding: 10px;
  }

  .poster {
    padding: 22px;
  }

  .poster-topline {
    gap: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .globe {
    width: 34px;
  }

  .brand-mark,
  .release-logo,
  .connect-logo {
    width: 150px;
  }

  .spaced,
  .poster p,
  .poster li,
  .poster em,
  .poster span,
  .poster a {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .poster h1,
  .poster h2 {
    letter-spacing: 0.22em;
  }

  .release-row {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 0;
  }

  .release-row strong {
    letter-spacing: 0.26em;
  }

  .cover-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-grid,
  .poster-footer {
    grid-template-columns: 1fr;
  }

  .platform-card,
  .poster-footer span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .platform-card:last-child,
  .poster-footer span:last-child {
    border-bottom: 0;
  }

  .orbit-join {
    gap: 28px;
  }

  .mailing-row {
    grid-template-columns: 1fr;
  }

  .mailing-row button {
    border-top: 1px solid var(--line);
  }
}
