/* Dost Müzik Evi — Kurumsal tanıtım sitesi */

:root {
  --color-bg: #faf8f4;
  --color-bg-alt: #f3efe8;
  --color-surface: #ffffff;
  --color-text: #141414;
  --color-text-muted: #5a5650;
  --color-accent: #c49a1a;
  --color-accent-soft: rgba(196, 154, 26, 0.12);
  --color-accent-hover: #a67f12;
  --color-dark: #0c0c0c;
  --color-dark-soft: #1e1c19;
  --color-border: #e8e2d8;
  --color-border-strong: #d4cbc0;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: clamp(3rem, 6vw, 5rem);
  --space-2xl: clamp(4rem, 8vw, 6.5rem);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(20, 16, 10, 0.04);
  --shadow: 0 8px 32px rgba(20, 16, 10, 0.07);
  --shadow-lg: 0 20px 48px rgba(20, 16, 10, 0.1);
  --header-h: 72px;
  --max-width: 1140px;
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 3.75rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}

p {
  margin: 0 0 var(--space-sm);
  color: var(--color-text-muted);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.125rem, 4vw, 1.75rem);
}

.section {
  padding: var(--space-xl) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto var(--space-lg);
}

.section__header p {
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.section__footer {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.section__footer--left {
  text-align: left;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--space-md);
  max-width: 100%;
}

.site-header .logo {
  min-width: 0;
  flex: 0 1 auto;
  max-width: min(100%, calc(100% - 3.25rem));
}

.site-header .logo--brand {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
}

.site-header .logo__text--inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem 0.6rem;
  min-width: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header .logo__name {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2.9vw, 1.38rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.site-header .logo__sep {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.75;
  user-select: none;
}

.site-header .logo__tag {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header .logo--brand .logo__img {
  flex-shrink: 0;
  height: 48px;
  max-height: 48px;
  width: auto;
  max-width: min(108px, 30vw);
  object-fit: contain;
}

@media (min-width: 900px) {
  .site-header .logo--brand {
    gap: 0.75rem;
    max-width: min(580px, 52vw);
  }

  .site-header .logo--brand .logo__img {
    height: 52px;
    max-height: 52px;
    max-width: 120px;
  }
}

@media (max-width: 899px) {
  .site-header .site-header__inner {
    padding-left: 16px;
    padding-right: 16px;
    gap: 0.75rem;
  }

  .site-header .nav-toggle {
    flex-shrink: 0;
    margin-left: 0.25rem;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .site-header .logo__text--inline {
    flex-wrap: wrap;
    align-items: baseline;
    row-gap: 0.1rem;
    white-space: normal;
  }

  .site-header .logo__sep {
    display: none;
  }

  .site-header .logo__tag {
    flex: 1 1 100%;
    font-size: 0.95rem;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .site-header .logo__sep,
  .site-header .logo__tag {
    display: none;
  }

  .site-header .logo__text--inline {
    white-space: nowrap;
  }
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
}

.logo:hover {
  color: var(--color-text);
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo__tag {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo--image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo__img {
  display: block;
  height: 56px;
  max-height: 56px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
}

.logo__img--footer {
  height: 44px;
  max-height: 44px;
  max-width: 180px;
  opacity: 0.95;
}

.nav {
  display: none;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }
}

.nav a {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a:hover,
.nav a.is-active {
  color: var(--color-accent);
}

.nav__shop {
  font-size: 0.85rem;
  color: var(--color-text-muted) !important;
}

.nav__shop:hover {
  color: var(--color-accent) !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--color-bg);
  padding: var(--space-lg) clamp(1.125rem, 4vw, 1.75rem);
  z-index: 99;
  overflow-y: auto;
}

.nav-mobile.is-open {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--lg {
  padding: 0.95rem 1.65rem;
  font-size: 1rem;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(196, 154, 26, 0.28);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
  box-shadow: 0 6px 20px rgba(166, 127, 18, 0.32);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.btn--outline:hover {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--dark {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}

.btn--dark:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: #fff;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
  box-shadow: 0 6px 20px rgba(30, 190, 93, 0.35);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-group--stack-mobile {
  flex-direction: column;
}

@media (min-width: 540px) {
  .btn-group--stack-mobile {
    flex-direction: row;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  background: var(--color-dark);
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 85% 20%, rgba(196, 154, 26, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(196, 154, 26, 0.08), transparent 50%),
    linear-gradient(155deg, #0c0c0c 0%, #1a1714 45%, #12100e 100%);
  pointer-events: none;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  padding: clamp(3rem, 10vw, 5.5rem) 0;
  width: 100%;
  min-width: 0;
}

@media (max-width: 899px) {
  .hero .hero__inner.container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto auto auto;
    gap: 0 3rem;
    row-gap: 1.25rem;
  }

  .hero__eyebrow {
    grid-column: 1;
    grid-row: 1;
  }

  #hero-title {
    grid-column: 1;
    grid-row: 2;
  }

  .hero__lead {
    grid-column: 1;
    grid-row: 3;
  }

  .hero__actions {
    grid-column: 1;
    grid-row: 4;
  }

  .hero__aside {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
  }
}

.hero__eyebrow,
#hero-title,
.hero__lead,
.hero__actions {
  max-width: 36rem;
  min-width: 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1.25rem;
  padding: 0.45rem 0.85rem;
  background: rgba(196, 154, 26, 0.12);
  border: 1px solid rgba(196, 154, 26, 0.25);
  border-radius: 100px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.75;
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 100%;
}

.hero__actions .btn {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-content: center;
  box-sizing: border-box;
}

@media (min-width: 540px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__actions .btn {
    width: auto;
    flex: 0 1 auto;
  }
}

.hero__aside {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 900px) {
  .hero__aside {
    display: flex;
    justify-content: flex-end;
    max-width: none;
  }
}

/* Hero sağ panel — tanıtım vitrini */
.hero-showcase {
  width: 100%;
  max-width: min(100%, 400px);
  margin-inline: auto;
  padding: clamp(1.15rem, 3vw, 1.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(196, 154, 26, 0.22);
  background:
    linear-gradient(165deg, rgba(196, 154, 26, 0.1) 0%, transparent 42%),
    linear-gradient(200deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(12, 12, 12, 0.55);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 900px) {
  .hero-showcase {
    margin-inline: 0 0 auto;
  }
}

.hero-showcase__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(196, 154, 26, 0.18);
  background:
    radial-gradient(ellipse 80% 70% at 70% 25%, rgba(196, 154, 26, 0.28), transparent 58%),
    linear-gradient(155deg, #1a1612 0%, #0f0e0c 48%, #1e1a16 100%);
}

.hero-showcase__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 40c0-6 4-10 10-10s10 4 10 10' fill='none' stroke='%23c49a1a' stroke-opacity='0.12' stroke-width='1.5'/%3E%3Ccircle cx='18' cy='14' r='3' fill='%23c49a1a' fill-opacity='0.08'/%3E%3C/svg%3E");
  background-size: 48px 48px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.hero-showcase__visual--has-image::before {
  opacity: 0.35;
}

.hero-showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-showcase__visual--has-image .hero-showcase__placeholder {
  display: none;
}

.hero-showcase__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-showcase__note {
  position: absolute;
  font-family: var(--font-display);
  color: var(--color-accent);
  opacity: 0.35;
  line-height: 1;
  pointer-events: none;
}

.hero-showcase__note--1 {
  top: 14%;
  left: 12%;
  font-size: clamp(1.5rem, 4vw, 2rem);
  transform: rotate(-12deg);
}

.hero-showcase__note--2 {
  top: 18%;
  right: 14%;
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  transform: rotate(8deg);
  opacity: 0.28;
}

.hero-showcase__note--3 {
  bottom: 22%;
  left: 18%;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  transform: rotate(6deg);
  opacity: 0.22;
}

.hero-showcase__glyph {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 10vw, 4.5rem);
  color: var(--color-accent);
  line-height: 1;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  opacity: 0.92;
}

.hero-showcase__chips {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

@media (min-width: 420px) {
  .hero-showcase__chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }
}

.hero-showcase__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 154, 26, 0.16);
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 2.2vw, 0.78rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.hero-showcase__chip-icon {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-accent);
  line-height: 1;
}

.hero-showcase__tagline {
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(196, 154, 26, 0.2);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  line-height: 1.4;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
}

/* Cards grid */
.grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

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

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

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

@media (min-width: 600px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.65rem);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--color-border-strong);
}

/* Course cards */
.card--course {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
}

.card--course .card__top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.card__icon-wrap {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-soft);
  border-radius: var(--radius);
  font-size: 1.35rem;
  line-height: 1;
}

.card--course h3 {
  margin: 0;
  padding-top: 0.2rem;
  flex: 1;
  color: var(--color-text);
  font-size: 1.25rem;
}

.card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.card__meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.card__meta span + span::before {
  content: ' · ';
}

.card__actions {
  margin-top: auto;
  padding-top: 0.85rem;
}

.card--course {
  min-height: 100%;
  overflow: hidden;
}

.card__media {
  margin: calc(-1 * clamp(1.25rem, 3vw, 1.65rem)) calc(-1 * clamp(1.25rem, 3vw, 1.65rem)) 1rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card--course-has-media .card__top {
  margin-top: 0;
}

.card__icon-img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  width: 100%;
}

@media (min-width: 480px) {
  .btn--sm {
    width: auto;
  }
}

.video-card__desc {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.map-embed--active {
  padding: 0;
  aspect-ratio: auto;
  min-height: 220px;
}

.map-embed--active iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: var(--radius);
}

.map-embed--active,
.contact-cta__details .map-placeholder {
  overflow: hidden;
  max-width: 100%;
}

.video-card__embed iframe {
  max-width: 100%;
}

.video-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(196, 154, 26, 0.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding-left: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 2;
}

/* Studio showcase */
.section--studio {
  position: relative;
  overflow: hidden;
}

.studio-showcase {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .studio-showcase {
    grid-template-columns: 1fr 1.05fr;
    padding: clamp(2rem, 4vw, 3rem);
  }
}

.studio-showcase__media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--color-dark) 0%, #2a241c 50%, #1a1612 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.studio-showcase__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(196, 154, 26, 0.25), transparent 60%);
}

.studio-showcase__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-accent);
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
}

.studio-showcase__symbol {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  color: var(--color-accent);
  line-height: 1;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.studio-showcase__body h2 {
  margin-bottom: 0.75rem;
}

.studio-showcase__body > p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 540px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.25rem;
  }
}

.feature-list li {
  position: relative;
  padding: 0.65rem 0.85rem 0.65rem 2.25rem;
  color: var(--color-text);
  font-size: 0.92rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.studio-block {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .studio-block {
    grid-template-columns: 1fr 1fr;
  }
}

.studio-block__visual {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--color-dark), #3d3528);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 3rem;
}

/* Video gallery */
.section--videos .section__header {
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.video-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.5rem);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.video-card__frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--color-dark-soft);
}

.video-card__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.video-card__body {
  padding: 1rem 1.15rem 1.15rem;
  border-top: 1px solid var(--color-border);
}

.video-card__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--color-text);
}

.video-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--color-border-strong);
  color: var(--color-text-muted);
}

/* Why us */
.why-card {
  text-align: center;
  padding: clamp(1.35rem, 3vw, 1.75rem);
}

.why-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  box-shadow: 0 4px 12px rgba(196, 154, 26, 0.35);
}

/* Contact CTA */
.section--contact {
  padding-bottom: var(--space-xl);
}

.contact-cta {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.5rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .contact-cta {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.contact-cta__primary {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: linear-gradient(145deg, #0c0c0c 0%, #1a1714 100%);
  color: #fff;
}

.contact-cta__primary .section-eyebrow {
  color: var(--color-accent);
}

.contact-cta__primary h2 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.contact-cta__primary > p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.75rem;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 28rem;
}

.contact-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-cta__actions .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .contact-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-cta__actions .btn {
    width: auto;
  }
}

.contact-cta__hint {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact-cta--solo {
  grid-template-columns: 1fr;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.contact-cta--solo .contact-cta__primary {
  text-align: center;
}

.contact-cta--solo .contact-cta__actions {
  justify-content: center;
}

.contact-cta__details {
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-cta__list {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-cta__list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.contact-cta__list div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-cta__list dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 0.25rem;
}

.contact-cta__list dd {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-cta__list a {
  color: var(--color-text);
  font-weight: 500;
}

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

.map-placeholder {
  flex: 1;
  min-height: 140px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder a {
  padding: var(--space-md);
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

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

.map-placeholder--spaced {
  margin-bottom: 1rem;
}

/* Legacy contact grid (inner pages) */
.contact-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  background: var(--color-surface);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-info dt {
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-info dt:first-child {
  margin-top: 0;
}

.contact-info dd {
  margin: 0.35rem 0 0;
  color: var(--color-text);
  font-size: 1rem;
}

.contact-info a {
  color: var(--color-text);
  font-weight: 500;
}

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

/* Page header */
.page-hero {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  background: linear-gradient(155deg, #0c0c0c 0%, #1a1714 100%);
  color: #fff;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: var(--space-xs);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.25rem);
}

.footer-grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .footer-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 992px) {
  .footer-grid--4 {
    grid-template-columns: 1.45fr 0.85fr 1fr 1fr;
    align-items: start;
  }

  .footer-brand {
    grid-column: auto;
  }
}

.footer-col__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.footer-col__title--sub {
  margin-top: 1.35rem;
}

.footer-col__empty {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Footer marka */
.footer-brand .logo--brand {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  max-width: 100%;
}

.footer-brand .logo__text--inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  min-width: 0;
  line-height: 1.2;
}

.footer-brand .logo__name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-brand .logo__sep {
  color: var(--color-accent);
  opacity: 0.8;
  font-weight: 300;
  font-size: 1rem;
}

.footer-brand .logo__tag {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}

.footer-brand .logo__img--footer {
  flex-shrink: 0;
  height: 44px;
  max-height: 44px;
  max-width: min(100px, 28vw);
}

.footer-brand__desc {
  margin: 0;
  max-width: 30rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.footer-brand__desc a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.footer-nav,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.footer-contact li {
  margin-bottom: 0.55rem;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact a {
  word-break: break-word;
}

/* Sosyal ikonlar */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.25rem;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.footer-social__link:hover {
  color: var(--color-accent);
  border-color: rgba(196, 154, 26, 0.45);
  background: rgba(196, 154, 26, 0.1);
}

.footer-social__icon {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.footer-shop-link {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.footer-shop-link:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom__copy {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  text-align: right;
}

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

@media (max-width: 639px) {
  .footer-brand .logo__sep,
  .footer-brand .logo__tag {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-credit {
    text-align: left;
  }
}

/* SEO — görünür tanıtım ve SSS (sayfa altı) */
.section--seo-bottom {
  padding-top: clamp(1.75rem, 4vw, 2.25rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.25rem);
  border-top: 1px solid var(--color-border);
}

.seo-bottom {
  max-width: 42rem;
}

.seo-bottom--wide {
  max-width: 48rem;
}

.seo-intro {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.seo-intro--left {
  text-align: left;
}

.seo-intro a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.section--faq {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--color-border);
}

.section--faq .section__header {
  margin-bottom: var(--space-md);
}

.faq-list {
  margin: 0;
  max-width: 48rem;
}

.faq-list__item {
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 0;
}

.faq-list__item:first-child {
  padding-top: 0;
}

.faq-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-list__item dt {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.4rem;
}

.faq-list__item dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--color-accent) 0%, #a67f12 100%);
  color: #fff;
  padding: clamp(2rem, 5vw, 2.75rem) 0;
  text-align: center;
}

.cta-strip h2 {
  color: #fff;
  margin-bottom: var(--space-sm);
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto var(--space-md);
  max-width: 36rem;
  font-size: 1.02rem;
}

.cta-strip .btn--outline {
  border-color: #fff;
  color: #fff;
}

.cta-strip .btn--outline:hover {
  background: #fff;
  color: var(--color-accent-hover);
}

/* Utility */
.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.notice {
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1rem, 3vw, 1.25rem);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

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

/* Mobile refinements */
@media (max-width: 599px) {
  body {
    font-size: 0.975rem;
  }

  .section__header {
    margin-bottom: 1.75rem;
  }

  .section__header h2 {
    margin-bottom: 0.65rem;
  }

  .btn {
    min-height: 48px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .contact-info .btn-group {
    flex-direction: column;
  }

  .contact-info .btn-group .btn {
    width: 100%;
  }

  .cta-strip .btn {
    width: 100%;
    max-width: 280px;
  }
}
