:root {
    --black: #111111;
    --white: #fafafa;
    --bone: #f5f0e6;
    --mauve: #b57b91;
    --mauve-glow: rgba(181, 123, 145, 0.22);
    --yellow: #f9f3aa;
    --yellow-soft: rgba(249, 243, 170, 0.5);
    /* legacy aliases — keep so existing rules keep working */
    --red: #b57b91;
    --red-glow: rgba(181, 123, 145, 0.22);
    --grey: #8a8a8a;
    --line: rgba(17, 17, 17, 0.08);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bone);
    color: var(--black);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ---------- NAV ---------- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s ease, background 0.3s ease;
  }
  nav.scrolled {
    color: var(--black);
    background: rgba(245, 240, 230, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  nav .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
  }
  nav .logo svg.mark {
    width: 34px;
    height: 34px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  nav .logo svg.wm { height: 15px; width: auto; display: block; }
  nav .logo:hover svg.mark { transform: rotate(-6deg) scale(1.05); }
  nav .logo .wordmark {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.32em;
    color: var(--yellow);
    transition: color 0.3s ease;
  }
  nav.scrolled .logo .wordmark { color: var(--mauve); }
  /* SVG mark color: mauve on light, white on dark */
  nav .logo svg .mark-fill { fill: #ffffff; transition: fill 0.3s ease; }
  nav.scrolled .logo svg .mark-fill { fill: var(--mauve); }
  nav .logo svg .wm-fill { fill: var(--yellow); transition: fill 0.3s ease; }
  nav.scrolled .logo svg .wm-fill { fill: var(--mauve); }

  nav ul { list-style: none; display: flex; gap: 36px; align-items: center; }
  nav a { color: inherit; text-decoration: none; transition: opacity 0.3s; }
  nav a:hover { opacity: 0.6; }
  nav .nav-accent {
    display: inline-block;
    width: 28px;
    height: 6px;
    background: var(--mauve);
    border-radius: 3px;
    margin-left: 12px;
    vertical-align: middle;
  }

  /* ---------- HERO ---------- */
  .hero {
    height: 100vh;
    background: var(--black);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 120px 40px 40px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 60%, var(--mauve-glow), transparent 60%),
      radial-gradient(ellipse at 80% 20%, var(--yellow-soft), transparent 55%);
    pointer-events: none;
  }

  /* film grain */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    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.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
    mix-blend-mode: overlay;
  }

  .hero-meta {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
    z-index: 2;
    animation: fadeIn 1.2s ease 0.2s both;
  }

  .hero-title {
    z-index: 2;
    animation: riseUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
  }

  .hero-title h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(80px, 18vw, 280px);
    line-height: 0.85;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-weight: 400;
  }

  .hero-title h1 .accent {
    color: var(--yellow);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
  }

  .hero-title h1 .symbol {
    color: var(--mauve);
    font-family: 'Anton', sans-serif;
    font-size: 0.7em;
    display: inline-block;
    transform: translateY(-0.15em);
    margin: 0 0.05em;
  }

  .hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
    animation: fadeIn 1.2s ease 1s both;
  }

  .hero-tagline {
    max-width: 380px;
    font-size: 18px;
    line-height: 1.4;
    font-style: italic;
  }

  .hero-tagline span {
    color: var(--mauve);
    font-style: normal;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    font-weight: 400;
  }

  .scroll-indicator {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .scroll-indicator::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--red);
    animation: pulse 2s ease infinite;
  }

  /* ---------- MARQUEE ---------- */
  .marquee {
    background: var(--black);
    color: var(--white);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
  }

  .marquee-track span { display: flex; align-items: center; gap: 60px; }
  .marquee-track .dot {
    color: var(--mauve);
    animation: recBlink 1.4s ease-in-out infinite;
    text-shadow: 0 0 8px var(--mauve), 0 0 14px rgba(181, 123, 145, 0.5);
  }

  @keyframes recBlink {
    0%, 45% { opacity: 1; }
    50%, 95% { opacity: 0.15; }
    100% { opacity: 1; }
  }

  /* ---------- SHOP ---------- */
  .shop {
    background: var(--bone);
    padding: 120px 40px 80px;
  }

  .section-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 80px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }

  .section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey);
  }

  .section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
  }

  .section-title em {
    color: var(--red);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
  }

  .section-meta {
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--line);
  }

  .product {
    background: #fbf8f1;
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.6s ease;
  }

  .product-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .product:hover .product-visual { transform: scale(1.05); }
  .product:hover { background: #f1e9d8; }

  /* ---------- PRODUCT HERO PHOTOS ---------- */
  .product-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }
  .product:hover .product-photo { transform: scale(1.04); }

  /* Subtle gradient overlay at bottom so buy button is readable over photo */
  .product::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 45%;
    background: linear-gradient(to bottom, rgba(245, 240, 230, 0) 0%, rgba(245, 240, 230, 0.85) 60%, rgba(245, 240, 230, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  /* ---------- SHOPIFY BUY BUTTON CONTAINERS ---------- */
  /* These styles make the Shopify Buy Button embeds fit the product card design */
  .product [id^="product-component-"] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    z-index: 3;
  }
  .product [id^="product-component-"] .shopify-buy__product__title {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 10px !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: var(--black) !important;
    margin-bottom: 4px !important;
  }
  .product [id^="product-component-"] .shopify-buy__product__price {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
    color: var(--black) !important;
    margin-bottom: 12px !important;
  }
  .product [id^="product-component-"] .shopify-buy__btn {
    background: var(--black) !important;
    color: var(--white) !important;
    border-radius: 0 !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 10px !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    padding: 14px 20px !important;
    transition: background 0.3s ease !important;
  }
  .product [id^="product-component-"] .shopify-buy__btn:hover {
    background: var(--mauve) !important;
  }
  .product [id^="product-component-"] .shopify-buy__product__variant-img {
    background: transparent !important;
  }

  /* PRODUCT 1 — Tee */
  .visual-tee {
    width: 60%;
    height: 70%;
    background: var(--black);
    clip-path: polygon(20% 0, 80% 0, 100% 15%, 95% 25%, 85% 22%, 85% 100%, 15% 100%, 15% 22%, 5% 25%, 0 15%);
    position: relative;
  }
  .visual-tee::after {
    content: 'FLDTSM';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--red);
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    letter-spacing: 0.15em;
  }

  /* PRODUCT 2 — Hoodie */
  .visual-hoodie {
    width: 65%;
    height: 75%;
    background: var(--black);
    clip-path: polygon(15% 0, 35% 0, 35% 8%, 65% 8%, 65% 0, 85% 0, 100% 18%, 92% 28%, 85% 25%, 85% 100%, 15% 100%, 15% 25%, 8% 28%, 0 18%);
    position: relative;
  }
  .visual-hoodie::after {
    content: '※';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--red);
    font-size: 32px;
  }

  /* PRODUCT 3 — Cap */
  .visual-cap {
    width: 70%;
    height: 30%;
    position: relative;
    margin-top: 10%;
  }
  .visual-cap::before {
    content: '';
    position: absolute;
    top: 0; left: 20%;
    width: 60%; height: 70%;
    background: var(--black);
    border-radius: 60% 60% 10% 10%;
  }
  .visual-cap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 25%;
    background: var(--black);
    border-radius: 4px;
  }

  /* PRODUCT 4 — Long sleeve */
  .visual-longsleeve {
    width: 90%;
    height: 65%;
    background: var(--bone);
    border: 2px solid var(--black);
    clip-path: polygon(25% 0, 75% 0, 100% 8%, 100% 30%, 75% 22%, 75% 100%, 25% 100%, 25% 22%, 0 30%, 0 8%);
    position: relative;
  }

  /* PRODUCT 5 — Crewneck */
  .visual-crewneck {
    width: 60%;
    height: 70%;
    background: var(--red);
    clip-path: polygon(20% 0, 40% 0, 40% 10%, 60% 10%, 60% 0, 80% 0, 100% 15%, 95% 25%, 85% 22%, 85% 100%, 15% 100%, 15% 22%, 5% 25%, 0 15%);
  }

  /* PRODUCT 6 — Tote */
  .visual-tote {
    width: 50%;
    height: 65%;
    background: var(--black);
    position: relative;
    margin-top: 15%;
  }
  .visual-tote::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 15%;
    width: 25%;
    height: 30%;
    border: 2px solid var(--black);
    border-bottom: none;
    border-radius: 50% 50% 0 0;
  }
  .visual-tote::after {
    content: '';
    position: absolute;
    top: -20%;
    right: 15%;
    width: 25%;
    height: 30%;
    border: 2px solid var(--black);
    border-bottom: none;
    border-radius: 50% 50% 0 0;
  }

  .product-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    z-index: 2;
  }

  .product-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .product-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .product-number {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--black);
    letter-spacing: 0.15em;
    z-index: 4;
    background: rgba(245, 240, 230, 0.7);
    padding: 4px 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .product-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--mauve);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 4;
    background: rgba(245, 240, 230, 0.7);
    padding: 4px 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  /* ---------- SOUND ---------- */
  .sound {
    background: var(--black);
    color: var(--white);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
  }

  .sound::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, var(--red-glow), transparent 70%);
    pointer-events: none;
  }

  .sound .section-header { border-bottom-color: rgba(255,255,255,0.1); }
  .sound .section-label, .sound .section-meta { color: var(--grey); }

  .tracks {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .track {
    display: grid;
    grid-template-columns: 60px 1fr auto 80px;
    gap: 32px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: padding-left 0.4s ease;
  }

  .track:hover {
    padding-left: 16px;
  }

  .track:hover .track-play {
    background: var(--red);
    border-color: var(--red);
  }

  .track:hover .track-title { color: var(--red); }

  .track-play {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .track-play svg { width: 14px; height: 14px; fill: var(--white); margin-left: 2px; }

  .track-info { display: flex; flex-direction: column; gap: 6px; }

  .track-title {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-weight: 400;
  }

  .track-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey);
  }

  .waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 30px;
  }

  .waveform span {
    display: block;
    width: 2px;
    background: rgba(255,255,255,0.4);
    border-radius: 1px;
  }

  .track:hover .waveform span { background: var(--red); }

  .track-duration {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--grey);
    letter-spacing: 0.1em;
    text-align: right;
  }

  /* ---------- CREDO ---------- */
  .credo {
    background: var(--yellow);
    padding: 160px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .credo::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 30%, rgba(181, 123, 145, 0.18), transparent 55%),
      radial-gradient(ellipse at 80% 70%, rgba(181, 123, 145, 0.14), transparent 50%);
    pointer-events: none;
  }

  .credo > * { position: relative; z-index: 2; }

  .credo-text {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.3;
    font-weight: 300;
  }

  .credo-text .red { color: var(--mauve); }

  .credo-divider {
    width: 1px;
    height: 60px;
    background: var(--black);
    margin: 60px auto;
  }

  .credo-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey);
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 40px 40px;
  }

  .footer-mark { margin-bottom: 60px; }
  .footer-mark .footer-logo { width: clamp(220px, 42vw, 540px); height: auto; display: block; }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .footer-grid h4 { color: var(--yellow); margin-bottom: 16px; font-weight: 400; }
  .footer-grid a { color: var(--white); text-decoration: none; display: block; padding: 4px 0; transition: color 0.3s; }
  .footer-grid a:hover { color: var(--mauve); }

  .footer-base {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
  }

  /* ---------- JOIN ---------- */
  .join { padding: 120px 40px; }
  .join-card {
    max-width: 1100px; margin: 0 auto;
    background: var(--yellow); color: var(--black);
    border-radius: 28px; padding: clamp(40px, 6vw, 80px);
  }
  .join-card h2 {
    font-family: 'Anton', sans-serif; font-weight: 400;
    font-size: clamp(44px, 8vw, 96px); line-height: 0.9;
    letter-spacing: -0.02em; text-transform: uppercase;
  }
  .join-lede {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(13px, 1.6vw, 16px); line-height: 1.9;
    max-width: 640px; margin-top: 28px;
  }
  .join-steps { margin-top: 48px; }
  .join-step { border-top: 1px solid rgba(17,17,17,0.22); padding: 32px 0; }
  .join-step:last-of-type { border-bottom: 1px solid rgba(17,17,17,0.22); }
  .join-step .step-num {
    font-family: 'JetBrains Mono', monospace; font-size: 13px;
    letter-spacing: 0.3em; opacity: 0.55; display: block; margin-bottom: 14px;
  }
  .join-step .step-text {
    font-family: 'Anton', sans-serif; font-weight: 400;
    font-size: clamp(24px, 3.4vw, 40px); line-height: 1.05; letter-spacing: -0.01em;
  }
  .join-ratio {
    font-family: 'JetBrains Mono', monospace; font-size: clamp(12px, 1.4vw, 14px);
    letter-spacing: 0.06em; line-height: 1.8; margin-top: 40px;
  }
  @media (max-width: 768px) { .join { padding: 80px 20px; } }

  /* ---------- PALABRAS LIST ---------- */
  .palabras-list {
    max-width: 800px;
    margin: 80px auto 0;
  }

  .palabra {
    border-top: 1px solid var(--line);
    padding: 48px 0;
  }

  .palabra:last-child { border-bottom: 1px solid var(--line); }

  .palabra-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 24px;
  }

  .palabra-num { color: var(--black); }

  .palabra-rec {
    color: var(--red);
    margin-left: auto;
    animation: recBlink 1.4s ease-in-out infinite;
    text-shadow: 0 0 6px rgba(213, 0, 0, 0.4);
  }

  .palabra-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 24px;
  }

  .palabra-title em {
    color: var(--red);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
  }

  .palabra-title .dash {
    color: var(--grey);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
  }

  .palabra-excerpt {
    font-size: 19px;
    line-height: 1.6;
    font-style: italic;
    color: var(--black);
    max-width: 640px;
    margin-bottom: 24px;
    font-weight: 300;
  }

  .palabra-cta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    cursor: pointer;
    transition: letter-spacing 0.3s ease;
    display: inline-block;
  }

  .palabra-cta:hover { letter-spacing: 0.35em; }

  /* ---------- PLACEHOLDER SECTIONS (PHOTONS / PALABRAS) ---------- */
  .placeholder-section {
    padding: 140px 40px;
    position: relative;
    overflow: hidden;
  }
  .placeholder-section.light { background: var(--bone); color: var(--black); }
  .placeholder-section.light .section-label,
  .placeholder-section.light .section-meta { color: var(--grey); }
  .placeholder-section.light .section-header { border-bottom-color: var(--line); }

  .placeholder-section.bone { background: var(--bone); color: var(--black); }
  .placeholder-section.bone .section-header { border-bottom-color: rgba(10,10,10,0.1); }

  .placeholder-content {
    max-width: 900px;
    margin: 80px auto 0;
    text-align: center;
  }

  .placeholder-frame {
    border: 1px solid var(--line);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
      linear-gradient(45deg, transparent 49%, var(--line) 49%, var(--line) 51%, transparent 51%);
    background-size: 24px 24px;
    margin-bottom: 40px;
  }

  .placeholder-frame .frame-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid var(--red);
  }
  .placeholder-frame .frame-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
  .placeholder-frame .frame-corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
  .placeholder-frame .frame-corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
  .placeholder-frame .frame-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

  .placeholder-frame-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey);
    text-align: center;
  }

  .placeholder-frame-text .red {
    color: var(--red);
    display: block;
    margin-bottom: 8px;
    font-size: 9px;
    animation: recBlink 1.4s ease-in-out infinite;
    text-shadow: 0 0 6px rgba(213, 0, 0, 0.4);
  }

  .placeholder-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.4;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
  }

  .placeholder-quote .red { color: var(--red); }

  @media (max-width: 768px) {
    .placeholder-section { padding: 80px 20px; }
    .placeholder-content { margin-top: 40px; }
  }

  /* ---------- WHY JOIN / MANIFESTO ---------- */
  .manifesto {
    background: var(--bone);
    color: var(--black);
    padding: 140px 40px;
    position: relative;
    overflow: hidden;
  }

  .manifesto-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }

  .manifesto-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
  }

  .manifesto-heading {
    font-family: 'Anton', sans-serif;
    font-size: clamp(40px, 5.5vw, 80px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-weight: 400;
  }

  .manifesto-heading em {
    color: var(--red);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
  }

  .manifesto-body p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 22px;
    font-weight: 300;
  }

  .manifesto-body p.italic {
    font-style: italic;
    color: var(--red);
    font-size: 22px;
    line-height: 1.5;
    border-left: 1px solid var(--red);
    padding-left: 24px;
  }

  .manifesto-body strong {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-style: normal;
  }

  /* ---------- PRICE BADGE / DROP META ---------- */
  .pillar-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-top: 4px;
  }

  /* ---------- FOUNDERS / BOARD ---------- */
  .founders {
    background: var(--bone);
    color: var(--black);
    padding: 140px 40px;
    position: relative;
  }

  .founders-intro {
    max-width: 760px;
    margin: 80px auto 64px;
    text-align: center;
  }

  .founders-intro p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.5;
    font-weight: 300;
  }

  .founders-intro p .red { color: var(--red); }

  .equity-table {
    max-width: 900px;
    margin: 0 auto 80px;
    border-top: 1px solid var(--line);
  }

  .equity-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
  }

  .equity-pct {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    line-height: 1;
    color: var(--red);
    letter-spacing: -0.01em;
  }

  .equity-role {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .equity-role-name {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 400;
  }

  .equity-role-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.4;
    color: var(--grey);
    font-weight: 300;
  }

  .equity-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey);
    text-align: right;
    white-space: nowrap;
  }

  .seats {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--line);
  }

  .seat {
    background: #fbf8f1;
    padding: 32px 28px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.4s ease;
  }

  .seat:hover { background: #f1e9d8; }

  .seat-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--grey);
    text-transform: uppercase;
  }

  .seat-line {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--grey);
    font-weight: 400;
    border-bottom: 1px dashed var(--grey);
    padding-bottom: 4px;
  }

  .seat-equity {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    align-self: flex-end;
  }

  /* ---------- ANIMATIONS ---------- */
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes riseUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 768px) {
    nav { padding: 20px; }
    nav ul { gap: 20px; }
    .hero { padding: 100px 20px 30px; }
    .hero-bottom { flex-direction: column; gap: 30px; align-items: flex-start; }
    .shop, .sound, .credo { padding: 80px 20px; }
    .section-header { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .section-meta { text-align: center; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .track { grid-template-columns: 48px 1fr 60px; gap: 16px; }
    .waveform { display: none; }
    .track-title { font-size: 20px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-base { flex-direction: column; gap: 12px; }
    .manifesto { padding: 80px 20px; }
    .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
    .founders { padding: 80px 20px; }
    .equity-row { grid-template-columns: 60px 1fr; gap: 16px; }
    .equity-tag { grid-column: 1 / -1; text-align: left; }
    .seats { grid-template-columns: 1fr; }
  }

  /* Tablet — 2x2 grid for product cards */
  @media (min-width: 769px) and (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
  }


/* =====================================================
   SUB-PAGE SYSTEM  (wares / waves / pixls / palabras)
   ===================================================== */
nav a.active { color: var(--mauve); opacity: 1; }

.page-hero {
  background: var(--black); color: var(--white);
  padding: 200px 40px 110px; position: relative; overflow: hidden;
  min-height: 72vh; display: flex; align-items: flex-end;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 72% 18%, rgba(181,123,145,0.20), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(249,243,170,0.06), transparent 55%);
}
.page-hero-inner { max-width: 1400px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.page-hero .eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--mauve); margin-bottom: 30px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.page-hero h1 {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(64px, 17vw, 260px); line-height: 0.82;
  letter-spacing: -0.03em; text-transform: uppercase;
}
.page-hero h1 em {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-weight: 300; color: var(--yellow); text-transform: none;
}
.page-hero .lede {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(20px, 2.6vw, 32px); line-height: 1.45;
  max-width: 760px; margin-top: 40px; color: var(--bone);
}
.page-hero .lede em { color: var(--mauve); font-style: italic; }

.page-section { padding: 110px 40px; max-width: 1400px; margin: 0 auto; }
.page-section.bone-bg { background: var(--bone); max-width: none; }
.page-section.bone-bg > * { max-width: 1400px; margin-left: auto; margin-right: auto; }

.inline-link { color: var(--black); border-bottom: 1px solid currentColor; white-space: nowrap; }
.dim { opacity: 0.6; }

/* embed slots (waves) */
.embed-slot {
  margin-top: 40px; border: 1px dashed rgba(181,123,145,0.55); border-radius: 16px;
  padding: 56px 32px; text-align: center; line-height: 2;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.08em;
  color: var(--grey); text-transform: uppercase;
}
.embed-slot.light { background: rgba(255,255,255,0.5); }
.campaign-lede {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(20px, 2.4vw, 30px); line-height: 1.5; max-width: 760px;
}
.campaign-lede em { color: var(--mauve); font-style: italic; }

/* loop grid (pixls) */
.loop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px; background: var(--line); border: 1px solid var(--line);
}
.loop-cell {
  aspect-ratio: 1; background: var(--bone); position: relative;
  transition: background 0.2s ease; cursor: crosshair;
}
.loop-cell .loop-index {
  position: absolute; top: 14px; left: 16px; font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; color: var(--grey); pointer-events: none;
}

@media (max-width: 768px) {
  .page-hero { padding: 140px 20px 70px; min-height: 60vh; }
  .page-section { padding: 70px 20px; }
}
