﻿:root {
  --bg: #090909;
  --bg-soft: #131313;
  --text: #f1eee7;
  --muted: #aaa39a;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d9d2c5;
  --glow: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 25%),
    radial-gradient(circle at 80% 15%, rgba(217, 210, 197, 0.18), transparent 22%),
    linear-gradient(180deg, #090909 0%, #0f0f0f 52%, #090909 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(#ffffff 0.6px, transparent 0.6px);
  background-size: 14px 14px;
}

/* Hero Header */
.hero-header {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('./hero-bg.jpg') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
}

.top-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 28px clamp(20px, 4vw, 48px);
  background: transparent;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.top-nav a:hover {
  color: #fff;
}

.hero-title {
  position: relative;
  z-index: 5;
  margin: 0;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  position: relative;
  z-index: 5;
  margin: 12px 0 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.hero-socials {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-top: 24px;
}

.hero-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 250ms ease, transform 250ms ease;
}

.hero-socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.button,
.contact-link {
  color: inherit;
  text-decoration: none;
}

main {
  padding: 0 clamp(20px, 4vw, 48px) 80px;
}

.hero,
.section {
  position: relative;
  display: grid;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.hero {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  min-height: calc(100vh - 88px);
  padding: 72px 0 56px;
}

.eyebrow,
.section-kicker,
.panel-label,
.card-tag {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.card h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.94;
}

.hero h1 {
  max-width: 8.5ch;
  font-size: clamp(4.4rem, 11vw, 10rem);
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(241, 238, 231, 0.9);
}

.hero-text,
.section-body p,
.card p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--text);
  color: var(--bg);
}

.button-secondary {
  background: transparent;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.panel-frame {
  width: min(100%, 320px);
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px var(--glow);
}

.panel-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.panel-list li {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.section {
  grid-template-columns: 84px minmax(0, 1fr);
  padding: 56px 0;
}

.section-index {
  margin: 0;
  color: rgba(241, 238, 231, 0.32);
  font-family: 'Inter', sans-serif;
  font-size: 2.1rem;
}

.section h2 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.card {
  min-height: 250px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
}

.card h3 {
  margin-top: 18px;
  font-size: 2rem;
}

.contact-body {
  padding-bottom: 32px;
}

.contact-link {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 160ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Down Button */
.scroll-down-btn {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 250ms ease, transform 250ms ease;
  animation: bounce 2.4s ease-in-out infinite;
}

.scroll-down-btn:hover {
  border-color: rgba(255,255,255,0.8);
  animation: none;
  transform: translateX(-50%) translateY(4px);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Gallery Section */
.gallery-section {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px clamp(20px, 5vw, 80px) 24px;
}

.gallery-label {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 80px) 56px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

/* Gallery item button wrapper */
.gallery-item {
  position: relative;
  flex-shrink: 0;
  width: clamp(260px, 30vw, 420px);
  height: clamp(320px, 38vw, 520px);
  scroll-snap-align: start;
  border-radius: 2px;
  overflow: hidden;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 500ms ease;
  filter: grayscale(100%) brightness(0.88);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(100%) brightness(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: background 350ms ease, opacity 350ms ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0,0,0,0.28);
  opacity: 1;
}

.gallery-placeholder {
  flex-shrink: 0;
  width: clamp(260px, 30vw, 420px);
  height: clamp(320px, 38vw, 520px);
  scroll-snap-align: start;
  border-radius: 2px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: block;
}

/* Gallery navigation controls */
.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 0 48px;
}

.gallery-nav-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 200ms ease, color 200ms ease;
}

.gallery-nav-btn:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--text);
}

.gallery-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 250ms ease, transform 250ms ease;
  flex-shrink: 0;
}

.gallery-dot.is-active {
  background: var(--text);
  transform: scale(1.4);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  transition: opacity 250ms ease, transform 250ms ease;
}

.lightbox-img.fade {
  opacity: 0;
  transform: scale(0.97);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 200ms ease;
  z-index: 1010;
}

.lightbox-close:hover {
  border-color: rgba(255,255,255,0.8);
}

.lightbox-prev,
.lightbox-next {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 200ms ease, background 200ms ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

/* ─── Nav pipe + social icon links ──────────────────────────── */
.nav-pipe {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--line);
  vertical-align: middle;
  flex-shrink: 0;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--muted) !important;
  opacity: 1;
  transition: color 200ms ease !important;
  padding: 0 2px;
}

.nav-social-link:hover,
.nav-social-link.active {
  color: var(--text) !important;
}

/* Instagram compact header */
.social-hero-compact {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.social-hero-compact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 80px);
  gap: 24px;
}

.social-hero-compact-left {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.social-hero-compact-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.04em;
}

.social-hero-compact-handle {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 540px) {
  .social-hero-compact-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── Social Pages (Instagram & X) ──────────────────────────── */
.social-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.social-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 80px clamp(32px, 5vw, 72px);
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  border-right: 1px solid var(--line);
}

.social-hero-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text);
}

.social-hero-handle {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.social-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--text);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 4px;
  align-self: flex-start;
  transition: opacity 200ms ease;
}

.social-follow-btn:hover {
  opacity: 0.8;
}

.social-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(32px, 5vw, 72px);
  background: var(--bg-soft);
}

.social-hero-index {
  margin: 0 0 32px;
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  letter-spacing: -0.02em;
}

.social-hero-desc {
  margin: 0 0 40px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 50ch;
}

.social-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.social-stat-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: opacity 200ms ease;
}

.social-stat-link:last-child {
  border-bottom: 1px solid var(--line);
}

.social-stat-link:hover {
  opacity: 0.7;
}

.social-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.social-stat-value {
  font-size: 0.9rem;
  color: var(--text);
}

/* Instagram grid */
.insta-grid-section {
  padding: 64px clamp(20px, 5vw, 80px);
  background: var(--bg);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.insta-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  display: block;
  text-decoration: none;
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 400ms ease;
  filter: grayscale(100%) brightness(0.88);
}

.insta-card:hover img {
  transform: scale(1.06);
  filter: grayscale(100%) brightness(1.05);
}

.insta-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  transition: background 350ms ease, opacity 350ms ease;
}

.insta-card:hover .insta-card-overlay {
  background: rgba(0,0,0,0.3);
  opacity: 1;
}

.insta-placeholder {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.06);
}

.insta-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* X CTA Section */
.x-cta-section {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 120px clamp(20px, 5vw, 80px);
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.x-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.x-cta-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.x-cta-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
}

.x-cta-desc {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 48ch;
}

/* 7th instagram card spans full width */
.insta-card--wide {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 1;
}

/* X feed (legacy - kept for fallback) */
.x-feed-section {
  padding: 64px clamp(20px, 5vw, 80px);
  background: var(--bg);
  border-top: 1px solid var(--line);
  min-height: 60vh;
}

.x-feed-wrap {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-soft);
}

.x-feed-wrap .twitter-timeline {
  display: block;
}

@media (max-width: 960px) {
  .social-hero-split {
    grid-template-columns: 1fr;
  }

  .social-hero-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: 50vh;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .insta-grid {
    grid-template-columns: 1fr;
  }
}

/* Subscribe Bar */
.subscribe-bar {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px clamp(20px, 5vw, 80px);
}

.subscribe-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.subscribe-title {
  margin: 0 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.subscribe-sub {
  margin: 0 0 36px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.subscribe-form input[type="email"] {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px 20px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  text-align: center;
  transition: border-color 250ms ease;
  box-sizing: border-box;
}

.subscribe-form input[type="email"]::placeholder {
  color: var(--muted);
}

.subscribe-form input[type="email"]:focus {
  border-color: rgba(255,255,255,0.4);
}

.subscribe-btn {
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  width: 100%;
  transition: opacity 200ms ease;
}

.subscribe-btn:hover {
  opacity: 0.8;
}

/* Footer */
.site-footer {
  background: #000;
  border-top: 1px solid var(--line);
  padding: 64px clamp(20px, 4vw, 48px) 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 36ch;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  margin: 0;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.footer-right {
  display: flex;
  flex-direction: column;
}

.footer-form-title {
  margin: 0 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 250ms ease, background 250ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.footer-submit {
  align-self: flex-start;
  min-width: 140px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

/* Sub-page Navigation */
.page-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 48px);
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid var(--line);
}

.page-nav-brand {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.page-nav-links {
  display: flex;
  gap: 28px;
}

.page-nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.page-nav-links a:hover,
.page-nav-links a.active {
  color: var(--text);
}

/* Sub-page Layout */
.page-main {
  padding: 0 clamp(20px, 4vw, 48px) 80px;
}

.page-hero {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-title {
  margin: 12px 0 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.94;
  color: var(--text);
}

.page-content {
  padding: 56px 0;
}

/* Music Page */
.music-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.music-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 80px clamp(32px, 5vw, 72px);
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  border-right: 1px solid var(--line);
}

.music-hero-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--text);
}

.music-hero-sub {
  margin: 0;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.music-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(32px, 5vw, 72px);
  background: var(--bg-soft);
}

.music-hero-index {
  margin: 0 0 32px;
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}

.music-hero-desc {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 44ch;
}

/* SoundCloud embed */
.music-player-section {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 0 clamp(20px, 5vw, 80px) 80px;
}

/* Tab navigation */
.music-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
  padding-top: 32px;
}

.music-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: color 250ms, border-color 250ms;
  margin-bottom: -1px;
}

.music-tab:hover {
  color: var(--text);
}

.music-tab.active {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* Panels */
.music-panel[hidden] {
  display: none;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Track card */
.track-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border: none;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
}

.track-card-art {
  position: absolute;
  inset: 0;
  background-image: var(--track-bg);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.75);
  transition: filter 450ms ease, transform 450ms ease;
}

.track-card:hover .track-card-art {
  filter: grayscale(0%) brightness(0.6);
  transform: scale(1.04);
}

.track-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}

.track-card-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
  backdrop-filter: blur(4px);
  transition: background 250ms ease, transform 250ms ease;
}

.track-card:hover .track-card-play {
  background: rgba(255,255,255,0.28);
  transform: scale(1.1);
}

.track-card-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

.track-card-artist {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Track modal */
.track-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
}

.track-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.track-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
}

.track-modal-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transform: translateY(16px);
  transition: transform 300ms ease;
}

.track-modal.is-open .track-modal-box {
  transform: translateY(0);
}

.track-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.track-modal-title {
  margin: 0 0 2px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.track-modal-artist {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.track-modal-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 200ms ease, color 200ms ease;
}

.track-modal-close:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--text);
}

.track-modal-player {
  display: block;
}

.track-modal-player iframe {
  display: block;
  width: 100%;
  height: 166px;
  border: none;
}

/* Album modal: taller player for full playlist view */
.track-modal.is-album .track-modal-player iframe {
  height: 450px;
}

/* Video grid: 16:9 cards */
.music-grid--video {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.track-card--video {
  aspect-ratio: 16 / 9;
}

/* Video modal: responsive 16:9 iframe */
.track-modal.is-video .track-modal-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.track-modal.is-video .track-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 960px) {
  .music-hero-split {
    grid-template-columns: 1fr;
  }

  .music-hero-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }

  .music-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

/* About Page — new design */

/* Hero split */
.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.about-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(32px, 5vw, 72px);
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  border-right: 1px solid var(--line);
}

.about-hero-title {
  margin: 20px 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--text);
}

.about-hero-tagline {
  margin: 0;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.about-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(32px, 5vw, 72px);
  background: var(--bg-soft);
}

.about-hero-index {
  margin: 0 0 36px;
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}

.about-hero-facts {
  display: flex;
  flex-direction: column;
}

/* Bio rows */
.about-body {
  padding: 0 clamp(20px, 4vw, 48px) 80px;
}

.about-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.about-row-num {
  font-size: 1.5rem;
  color: var(--line);
  padding-top: 8px;
  line-height: 1;
}

.about-row-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
}

.about-row-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
}

.about-row-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 66ch;
}

.about-row-content a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: border-color 250ms ease;
}

.about-row-content a:hover {
  border-color: var(--text);
}

.about-row-content em {
  color: var(--text);
  font-style: normal;
  font-weight: 500;
}

/* Project list in about */
.about-projects-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.about-project-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: opacity 250ms ease;
}

.about-project-item:last-child {
  border-bottom: 1px solid var(--line);
}

.about-project-item:hover {
  opacity: 0.7;
}

.about-project-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.about-project-desc {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.about-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-bio h2 {
  margin: 0 0 28px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}

.about-bio p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 60ch;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

.about-bio a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: border-color 250ms ease;
}

.about-bio a:hover {
  border-color: var(--text);
}

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 100px;
}

.fact-row {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.fact-row:last-child {
  border-bottom: 1px solid var(--line);
}

.fact-label {
  margin: 0 0 4px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.fact-value {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.fact-value a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: border-color 250ms ease;
}

.fact-value a:hover {
  border-color: var(--text);
}

.about-text h2 {
  margin: 0 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}

.about-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 52ch;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
}

.detail-card h3 {
  margin: 14px 0 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text);
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h2 {
  margin: 0 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}

.contact-info p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 48ch;
}

.contact-details {
  margin-top: 32px;
}

.contact-item {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-item-label {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-item a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 250ms ease;
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-form-wrapper {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

/* Contact Page - Split Layout */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.contact-split-bg {
  background: url('./iletisim-bg.jpg') center center / cover no-repeat;
  position: relative;
}

.contact-split-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.contact-split-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(32px, 5vw, 72px);
  background: var(--bg);
}

.contact-split-title {
  margin: 0 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

.contact-split-desc {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 44ch;
}

.contact-split-info {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-split-info p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Music Page */
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.music-intro h2,
.projects-intro h2,
.blog-intro h2 {
  margin: 0 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}

.music-intro p,
.projects-intro p,
.blog-intro p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 52ch;
}

.music-tracks {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.track-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.track-title {
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.track-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.track-icon {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Projects Page — new design */
.project-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--line);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* LifeApp LLC split hero */
.projects-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.projects-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(32px, 5vw, 72px);
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  border-right: 1px solid var(--line);
}

.projects-hero-title {
  margin: 24px 0 10px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
}

.projects-hero-slogan {
  margin: 0 0 36px;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: italic;
}

.projects-hero-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.projects-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(32px, 5vw, 72px);
  background: var(--bg-soft);
  position: relative;
}

.projects-hero-index {
  margin: 0 0 32px;
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}

.projects-hero-desc p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 50ch;
}

.projects-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

/* Project row list */
.projects-list {
  padding: 0 clamp(20px, 4vw, 48px) 80px;
}

.prow {
  display: grid;
  grid-template-columns: 80px 1fr 56px;
  gap: 36px;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.prow-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  padding-top: 4px;
}

.prow-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prow-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.prow-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

.prow-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.prow-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 250ms ease, border-color 250ms ease;
}

.prow-links a:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.4);
}

.prow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prow-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 72ch;
}

.prow-icon {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.12);
  padding-top: 6px;
  text-align: right;
}

/* Blog Page */
.blog-intro {
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 250ms ease;
}

.blog-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.blog-card-date {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.blog-card h3 {
  margin: 4px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap 220ms ease;
}

.blog-read-more:hover {
  gap: 12px;
}

/* Contact Page Footer (with map) */
.contact-footer {
  background: #000;
  border-top: 1px solid var(--line);
  padding: 0;
}

.contact-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 48px clamp(20px, 4vw, 48px);
}

.contact-footer-map {
  position: relative;
  min-height: 350px;
}

#map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 960px) {
  .hero,
  .section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .top-nav {
    gap: 14px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid,
  .about-split,
  .about-hero-split,
  .contact-grid,
  .music-grid,
  .blog-grid,
  .projects-hero-split {
    grid-template-columns: 1fr;
  }

  .projects-hero-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: 50vh;
  }

  .about-hero-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: 50vh;
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-row-num {
    display: none;
  }

  .about-project-item {
    flex-direction: column;
    gap: 4px;
  }

  .about-project-desc {
    text-align: left;
  }

  .prow {
    grid-template-columns: 48px 1fr;
  }

  .prow-icon {
    display: none;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-split-bg {
    min-height: 40vh;
  }

  .contact-footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-footer-map {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  .top-nav {
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 18vw, 5.4rem);
  }

  .contact-link {
    word-break: break-word;
  }

  .page-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .page-nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — Professional
   Breakpoints: 768px (tablet), 480px (phone)
═══════════════════════════════════════════════════════════ */

/* Hamburger Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 20;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(9,9,9,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  backdrop-filter: blur(12px);
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-overlay a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 0;
  transition: color 200ms ease;
}

.mobile-nav-overlay a:hover {
  color: #fff;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 200ms ease;
}

.mobile-nav-close:hover {
  border-color: rgba(255,255,255,0.6);
}

/* ─── TABLET (768px) ─────────────────────────────────────── */
@media (max-width: 768px) {

  /* Top nav — homepage */
  .top-nav {
    gap: 0;
    justify-content: flex-end;
    padding: 20px clamp(16px, 4vw, 32px);
  }

  .top-nav a:not(:last-child) {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Page nav — sub-pages */
  .page-nav {
    padding: 16px clamp(16px, 4vw, 32px);
  }

  .page-nav-links {
    display: none;
  }

  .page-nav .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 0 40px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 12vw, 6rem);
  }

  .hero-panel {
    display: none;
  }

  /* Hero header */
  .hero-title {
    font-size: clamp(1.8rem, 7vw, 3.5rem);
  }

  .hero-socials {
    gap: 20px;
    margin-top: 20px;
  }

  .hero-socials a {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  /* Gallery */
  .gallery-header {
    padding: 24px clamp(16px, 4vw, 32px) 16px;
  }

  .gallery-track {
    padding: 0 clamp(16px, 4vw, 32px) 32px;
    gap: 12px;
  }

  .gallery-item,
  .gallery-placeholder {
    width: clamp(220px, 70vw, 320px);
    height: clamp(260px, 50vw, 380px);
  }

  /* Lightbox nav on mobile */
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  /* Subscribe */
  .subscribe-bar {
    padding: 56px clamp(16px, 4vw, 32px);
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  /* About hero split */
  .about-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: auto;
    padding: 56px clamp(20px, 5vw, 48px);
  }

  .about-hero-right {
    padding: 40px clamp(20px, 5vw, 48px);
  }

  .about-hero-index {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .about-hero-title {
    font-size: clamp(2.2rem, 8vw, 4rem);
  }

  /* About body rows */
  .about-body {
    padding: 0 clamp(16px, 4vw, 32px) 60px;
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 0;
  }

  .about-row-num {
    display: none;
  }

  .about-project-item {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .about-project-desc {
    text-align: left;
  }

  /* Music hero split */
  .music-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .music-hero-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: auto;
    padding: 48px clamp(20px, 5vw, 48px);
  }

  .music-hero-right {
    padding: 32px clamp(20px, 5vw, 48px);
  }

  .music-hero-index {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  /* Music player section */
  .music-player-section {
    padding: 0 clamp(16px, 4vw, 32px) 60px;
  }

  /* Music tabs */
  .music-tabs {
    padding-top: 24px;
    margin-bottom: 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }

  .music-tabs::-webkit-scrollbar { display: none; }

  .music-tab {
    padding: 12px 20px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Track grid */
  .music-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .music-grid--video {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .music-grid--albums {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  /* Track modal */
  .track-modal {
    padding: 0;
    align-items: flex-end;
  }

  .track-modal-box {
    max-width: 100%;
    border-radius: 12px 12px 0 0;
    transform: translateY(100%);
  }

  .track-modal.is-open .track-modal-box {
    transform: translateY(0);
  }

  /* Projects hero split */
  .projects-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .projects-hero-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: auto;
    padding: 56px clamp(20px, 5vw, 48px);
  }

  .projects-hero-right {
    padding: 40px clamp(20px, 5vw, 48px);
  }

  .projects-hero-index {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  /* Prow (project rows) */
  .prow {
    flex-direction: column;
    gap: 16px;
    padding: 32px clamp(16px, 4vw, 32px);
  }

  .prow-icon {
    display: none;
  }

  /* Social hero split */
  .social-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .social-hero-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: 40vh;
    padding: 56px clamp(20px, 5vw, 48px);
  }

  .social-hero-right {
    padding: 40px clamp(20px, 5vw, 48px);
  }

  .social-hero-index {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  /* Contact split */
  .contact-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-split-bg {
    height: 220px;
    min-height: 0;
  }

  .contact-split-form {
    padding: 48px clamp(20px, 5vw, 48px);
  }

  /* Contact footer */
  .contact-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-footer-map {
    height: 260px;
  }

  /* Instagram grid */
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .insta-grid-section {
    padding: 40px clamp(16px, 4vw, 32px);
  }

  /* X CTA */
  .x-cta-section {
    padding: 72px clamp(16px, 4vw, 32px);
  }

}

/* ─── PHONE (480px) ──────────────────────────────────────── */
@media (max-width: 480px) {

  /* Hero */
  .hero-header {
    align-items: flex-start;
  }

  .hero-title {
    font-size: clamp(1.5rem, 9vw, 2.8rem);
    padding: 0 clamp(16px, 4vw, 24px);
    text-align: left;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    padding: 0 clamp(16px, 4vw, 24px);
    text-align: left;
  }

  .hero-socials {
    justify-content: flex-start;
    padding: 0 clamp(16px, 4vw, 24px);
  }

  .scroll-down-btn {
    left: clamp(16px, 4vw, 24px);
    transform: none;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
  }

  /* Gallery */
  .gallery-item,
  .gallery-placeholder {
    width: 80vw;
    height: 52vw;
  }

  /* Music grid - 2 columns fixed */
  .music-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .music-grid--video {
    grid-template-columns: 1fr;
  }

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

  .track-card-title {
    font-size: 0.78rem;
  }

  .track-card-artist {
    font-size: 0.65rem;
  }

  .track-card-play {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  /* About row */
  .about-row-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  /* Social compact header */
  .social-hero-compact-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px clamp(16px, 4vw, 24px);
  }

  /* Instagram single column */
  .insta-grid {
    grid-template-columns: 1fr;
  }

  .insta-card--wide {
    aspect-ratio: 1 / 1;
  }

  /* Footer */
  .footer-brand {
    font-size: 1.2rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* Subscribe */
  .subscribe-bar {
    padding: 40px clamp(16px, 4vw, 24px);
  }

  /* Prow */
  .prow-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  /* Music tabs */
  .music-tab {
    padding: 10px 16px;
    font-size: 0.72rem;
  }

  /* Modal full-height on phones */
  .track-modal.is-album .track-modal-player iframe {
    height: 320px;
  }

}
