@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lora-v37-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/lora-v37-latin_latin-ext-italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/lora-v37-latin_latin-ext-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/playfair-display-v40-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/playfair-display-v40-latin_latin-ext-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/outfit-v15-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/outfit-v15-latin_latin-ext-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/outfit-v15-latin_latin-ext-600.woff2') format('woff2');
}

/* Fallbacks */

/* Playfair Display 700 */
@font-face {
  font-family: "playfair-fallback";
  src: local("Times New Roman");
  ascent-override: 108.2%;
  descent-override: 25.1%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "playfair-fallback";
  src: local("Times New Roman");
  ascent-override: 104.2%;
  descent-override: 26.1%;
  line-gap-override: 0%;
  font-style: italic;
}

/* Lora (all weights and italic identical) */
@font-face {
  font-family: "lora-fallback";
  src: local("Times New Roman");
  ascent-override: 100.6%;
  descent-override: 27.4%;
  line-gap-override: 0%;
}

/* Outfit regular */
@font-face {
  font-family: "outfit-fallback";
  src: local("Arial");
  ascent-override: 100.6%;
  descent-override: 27.4%;
  line-gap-override: 0%;
}

/* Outfit 500/600 */
@font-face {
  font-family: "outfit-medium-fallback";
  src: local("Arial");
  ascent-override: 100%;
  descent-override: 26%;
  line-gap-override: 0%;
}

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

:root {
  --black: #0a0a0a;
  --white: #f5f3ef;
  --white-dim: rgba(245, 243, 239, 0.95);
  --white-faint: rgba(245, 243, 239, 0.12);
  --accent: #ffc300;
  --accent-hover: #E6AF00;
  --border: rgba(245, 243, 239, 0.15);
  --font-heading: 'Playfair Display', playfair-fallback, Georgia, serif;
  --font-body: 'Lora', lora-fallback, Georgia, serif;
  --font-sans: 'Outfit', outfit-fallback, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background: rgba(10, 10, 10, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 0.3s ease;
}

nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: brightness(10);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-logo:hover img {
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ── HERO ── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

/* Page Specific BG */

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-nvs .hero-bg img {
  object-position: center 30%;
}

.page-is .hero-bg img {
  object-position: 40% 15%;
}

.page-ak .hero-bg img {
  object-position: center center;
}

@media (max-width: 768px) {
  .page-ak .hero-bg img {
    object-position: 75% top;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.3) 0%,
      rgba(10, 10, 10, 0.1) 40%,
      rgba(10, 10, 10, 0.7) 75%,
      rgba(10, 10, 10, 0.97) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 900px;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 15px;
  color: var(--white-dim);
  letter-spacing: 0.06em;
}

/* ── SECTIONS ── */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 28px;
}

p {
  color: var(--white-dim);
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--accent);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

/* ── BIO IMAGE ── */
.bio-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  margin: 40px 0;
  filter: grayscale(20%);
}

.page-is .bio-image {
  object-position: center 20%;
}

/* ── VIDEOS ── */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── SINGLES ── */
.singles-list {
  list-style: none;
  margin-top: 12px;
}

.singles-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}

.singles-list li:first-child {
  border-top: 1px solid var(--border);
}

.singles-list li:hover {
  padding-left: 8px;
}

.single-info {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.single-title {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--white);
  font-style: italic;
}

.single-year {
  font-size: 13px;
  color: var(--white-dim);
}

.single-badge {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 8px;
  margin-left: 10px;
  opacity: 0.85;
}

.single-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.single-link:hover {
  opacity: 1;
  color: var(--accent-hover);
}

/* ── PLATFORMS ── */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0s;
}

.platform-btn:hover {
  border-color: var(--white-dim);
  background: var(--white-faint);
  color: var(--white);
}

.platform-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

.platform-btn.spotify svg {
  color: #1DB954;
}

.platform-btn.youtube svg {
  color: #FF0000;
}

.platform-btn.instagram svg {
  color: #E1306C;
}

.platform-btn.apple svg {
  color: #fc3c44;
}

.platform-btn.deezer svg {
  color: #A238FF;
}

/* ── HOMEPAGE HERO ── */
.hero-home {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-home-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-home-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 10% top;
  filter: brightness(0.35);
}

.hero-home-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 860px;
}

.hero-home-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.hero-home-title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-home-title em {
  font-style: italic;
  color: var(--white-dim);
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background: var(--white);
  color: var(--black);
}

/* ── SOCIAL MEDIA SECTION ── */
#sosyal-medya {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.sosyal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .sosyal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }

  .sosyal-artist {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
  }
}

.sosyal-artist h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  align-self: end;
}

.sosyal-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sosyal-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.sosyal-btn:hover {
  border-color: var(--white-dim);
  background: var(--white-faint);
  color: var(--white);
}

.sosyal-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sosyal-btn.ig svg {
  fill: #E1306C;
}

.sosyal-btn.sp svg {
  fill: #1DB954;
}

.sosyal-btn.yt svg {
  fill: #FF0000;
}

/* ── HAKKIMIZDA ── */
#hakkimizda {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.hakkimizda-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hakkimizda-text h2 {
  margin-bottom: 24px;
}

.hakkimizda-text p {
  margin-bottom: 28px;
}

.hakkimizda-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}

/* ── KONSERLER ── */
#konserler {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.konserler-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.konser-card {
  padding: 48px 40px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.konser-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
}

.konser-card p {
  font-size: 15px;
  flex: 1;
}

.btn-outline {
  display: inline-block;
  padding: 11px 24px;
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(255, 195, 0, 0.08);
  color: var(--accent-hover);
}

/* ── SANATCILAR ── */
#sanatcilar {
  padding: 100px 0;
}

.sanatcilar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  margin-top: 48px;
}

.sanatci-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: block;
  cursor: pointer;
  isolation: isolate;

}

.sanatci-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sanatci-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(30%) brightness(0.75);
}

#sanatci-ak img {
  object-position: 80% center;
}

#sanatci-nvs img {
  object-position: center center;
}

.sanatci-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(0.65);
}

.sanatci-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 60%, transparent 100%);
}

.sanatci-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.sanatci-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  display: block;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.sanatci-name:hover {
  color: var(--accent);
}

/* Platform buttons */
.home-platform-buttons {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.home-platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(245, 243, 239, 0.08);
  border: 1px solid rgba(245, 243, 239, 0.12);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.home-platform-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.home-platform-btn.ig svg {
  fill: #E1306C;
}

.home-platform-btn.sp svg {
  fill: #1DB954;
}

.home-platform-btn.yt svg {
  fill: #FF0000;
}

.home-platform-btn.ig:hover {
  background: rgba(225, 48, 108, 0.2);
  border-color: #E1306C;
  transform: translateY(-2px);
}

.home-platform-btn.sp:hover {
  background: rgba(29, 185, 84, 0.2);
  border-color: #1DB954;
  transform: translateY(-2px);
}

.home-platform-btn.yt:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: #FF0000;
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */

@media (max-width: 1280px) {
  .sanatcilar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .sosyal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hakkimizda-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

@media (max-width: 768px) {
  .hero-home-content {
    padding: 0 24px;
  }

  .sosyal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hakkimizda-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hakkimizda-img-wrap {
    order: -1;
  }

  .konserler-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .sanatcilar-grid {
    grid-template-columns: 1fr;
  }

  .sanatci-card {
    aspect-ratio: 4/3;
  }
}

.iletisim-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  padding-top: 140px;
  border-bottom: 1px solid var(--border);
}

.iletisim-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
}

.iletisim-body {
  padding: 100px 0;
}

.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.iletisim-left h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 12px;
}

.iletisim-left>p {
  color: var(--white-dim);
  margin-bottom: 48px;
  font-size: 16px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: padding-left 0.2s ease;
}

.contact-item:first-child {
  border-top: 1px solid var(--border);
}

.contact-item:hover {
  padding-left: 8px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.contact-value {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
}

.iletisim-right {
  padding-top: 8px;
}

.iletisim-right h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 12px;
}

.iletisim-right>p {
  color: var(--white-dim);
  margin-bottom: 32px;
  font-size: 16px;
}

.sanatcilar-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sanatci-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: padding-left 0.2s ease;
}

.sanatci-link:first-child {
  border-top: 1px solid var(--border);
}

.sanatci-link:hover {
  padding-left: 8px;
}

.sanatci-link-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--white);
}

.sanatci-link-genre {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (max-width: 768px) {
  .iletisim-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.notfound {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.notfound-inner {
  max-width: 520px;
}

.notfound-number {
  font-family: var(--font-heading);
  font-size: clamp(120px, 20vw, 200px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  opacity: 0.06;
  display: block;
  margin-bottom: -20px;
  -webkit-user-select: none;
  user-select: none;
}

.notfound-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.notfound-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.notfound-text {
  color: var(--white-dim);
  font-size: 16px;
  margin-bottom: 40px;
}

.notfound-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.notfound-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.notfound-btn:hover {
  background: var(--white-faint);
  border-color: var(--white-dim);
  color: var(--white);
}

.notfound-btn.primary {
  border-color: var(--white);
}

.notfound-btn.primary:hover {
  background: var(--white);
  color: var(--black);
}

/* ── FOOTER ── */
footer {
  padding-top: 0;
  padding-bottom: 40px;
}

.footer-accent-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-bottom: 60px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  opacity: 0.85;
  filter: brightness(10);
}

.footer-social {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}

.footer-social:hover {
  opacity: 0.7;
}

.footer-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
}

.footer-contact a {
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--white-dim);
  letter-spacing: 0.08em;
  margin: 0;
}

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white-dim);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
}

.mobile-close:hover {
  color: var(--accent);
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--white-dim);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--accent);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 0 24px;
  }

  .container {
    padding: 0 24px;
  }

  section {
    padding: 60px 0;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-nav {
    gap: 16px;
  }
}

/* Page Specific CSS */