:root {
  --gold: #c89200;
  --gold-soft: #e6bb49;
  --ink: #111111;
  --smoke: #2e2e2e;
  --ivory: #fbfaf5;
  --line: #e8dfc4;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-display: "Barlow Condensed", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(200, 146, 0, 0.16), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(17, 17, 17, 0.08), transparent 28%),
    linear-gradient(180deg, #f8f6ef 0%, #fbfaf5 52%, #f6f2e8 100%);
}

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

.font-display {
  font-family: var(--font-display);
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
  z-index: -1;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  z-index: -1;
}

.hero-section::before {
  width: 480px;
  height: 480px;
  right: -140px;
  top: 40px;
  background: linear-gradient(180deg, rgba(200, 146, 0, 0.18), rgba(200, 146, 0, 0.02));
}

.hero-section::after {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: -20px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08), transparent);
}

.nav-link,
.footer-link {
  position: relative;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.footer-link {
  color: rgba(46, 46, 46, 0.78);
}

.nav-link::after,
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active,
.footer-link:hover {
  color: white;
}

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

.nav-link:hover::after,
.nav-link.is-active::after,
.footer-link:hover::after {
  transform: scaleX(1);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.mobile-menu.is-open {
  max-height: 420px;
}

.mobile-link {
  border-radius: 999px;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
  transition: background-color 180ms ease, color 180ms ease;
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.mobile-link.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.stat-card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
}

.hero-stat__label {
  margin-top: 0.65rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(46, 46, 46, 0.72);
}

.hero-tv-card {
  position: relative;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-tv-card::before {
  content: none;
}

.hero-tv-shell {
  position: relative;
  padding-top: 0;
}

.hero-tv-shell__antenna {
  display: none;
}

.hero-tv-shell__antenna::before,
.hero-tv-shell__antenna::after {
  content: none;
}

.hero-tv-shell__antenna::before {
  content: none;
}

.hero-tv-shell__antenna::after {
  content: none;
}

.hero-tv-shell__frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 0.7rem;
  border: 1px solid rgba(200, 146, 0, 0.28);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 18px 42px rgba(17, 17, 17, 0.12);
}

.hero-tv-shell__screen {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: auto;
  border-radius: 1rem;
  padding: 0;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.hero-tv-shell__screen::before {
  content: none;
}

.hero-tv-gallery-host {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 100%;
}

.hero-tv-gallery {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #f8f6ef;
  aspect-ratio: 16 / 9;
  box-shadow: none;
}

.hero-tv-gallery__track {
  display: flex;
  height: 100%;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-tv-gallery__slide {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
}

.hero-tv-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8f6ef;
}

.hero-tv-gallery__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  margin: 0;
  border: 1px dashed rgba(17, 17, 17, 0.16);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.72);
  aspect-ratio: 16 / 9;
  padding: 1rem;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(46, 46, 46, 0.72);
}

.hero-tv-shell__controls {
  display: none;
}

.hero-tv-shell__speaker {
  width: 100%;
  height: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.65));
}

.hero-tv-shell__knob {
  position: relative;
  width: 2.45rem;
  height: 2.45rem;
  margin-top: auto;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18) 28%, transparent 29%),
    linear-gradient(145deg, #111111, #4a4a4a);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    0 8px 18px rgba(17, 17, 17, 0.18);
}

.hero-tv-shell__knob::after {
  content: "";
  position: absolute;
  top: 0.35rem;
  left: 50%;
  width: 2px;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--gold-soft);
  transform: translateX(-50%);
}

.hero-tv-shell__knob--small {
  width: 1.85rem;
  height: 1.85rem;
  margin-top: 0;
}

.hero-tv-shell__knob--small::after {
  top: 0.3rem;
  height: 0.52rem;
}

.hero-tv-shell__stand {
  display: none;
}

.hero-tv-shell__stand::before {
  content: none;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(200, 146, 0, 0.18);
  border-radius: 2rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 229, 0.96));
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.14);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(200, 146, 0, 0.12);
  border-radius: 1.45rem;
  pointer-events: none;
}

.hero-panel__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.hero-media-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(160deg, #111111 0%, #2d2d2d 100%);
  color: white;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.1);
}

.hero-media-card--light {
  background: linear-gradient(180deg, #ffffff 0%, #f7f1df 100%);
  color: var(--ink);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.hero-media-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #3f3d39;
}

.hero-media-card__body {
  padding: 1rem 1.1rem 1.2rem;
}

.hero-media-card__label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-media-card__title {
  margin-top: 0.75rem;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.6;
}

.hero-media-card__copy {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

.hero-media-card--light .hero-media-card__copy {
  color: rgba(46, 46, 46, 0.82);
}

.hero-message-button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.hero-message-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 1.5rem;
}

.hero-message-placeholder {
  display: flex;
  min-height: 100%;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
  background:
    radial-gradient(circle at top right, rgba(230, 187, 73, 0.16), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.hero-media-card--light .hero-message-placeholder {
  background:
    radial-gradient(circle at top right, rgba(200, 146, 0, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 223, 0.96));
}

.hero-message-placeholder__inner {
  width: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.26);
  border-radius: 1.25rem;
  padding: 1.25rem;
  text-align: center;
}

.hero-media-card--light .hero-message-placeholder__inner {
  border-color: rgba(17, 17, 17, 0.16);
}

.section-space {
  padding: 6rem 0;
}

.section-kicker {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ink);
}

.section-copy {
  margin-top: 1.5rem;
  max-width: 44rem;
  font-size: 1rem;
  line-height: 2;
  color: rgba(46, 46, 46, 0.82);
}

.info-card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.9rem;
  padding: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 246, 238, 0.92)),
    var(--ivory);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
}

.info-card__icon {
  display: flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, var(--gold), var(--gold-soft));
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
}

.course-card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 2rem;
  padding: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f3e6 100%);
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.08);
}

.course-card--dark {
  background: linear-gradient(160deg, #111111 0%, #2d2d2d 100%);
  color: white;
}

.course-card__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(200, 146, 0, 0.12);
  padding: 0.6rem 0.9rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.course-card__media {
  overflow: hidden;
  margin-bottom: 1.25rem;
  border-radius: 1.4rem;
  background: #3f3d39;
}

.course-card__media-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.course-card__media-image--contain {
  object-fit: contain;
  padding: 1rem;
}

.course-card--dark .course-card__media-image {
  transform: scale(1.02);
}

.course-card--dark .course-card__badge {
  background: rgba(255, 255, 255, 0.08);
}

.course-card__title {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.course-card__copy {
  margin-top: 1rem;
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(46, 46, 46, 0.82);
}

.course-card--dark .course-card__copy {
  color: rgba(255, 255, 255, 0.82);
}

.arrow-link {
  display: inline-flex;
  margin-top: 1.6rem;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 1.4rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.arrow-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.18);
}

.course-card--dark .arrow-link {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.vision-mission-page {
  display: block;
}

.vision-mission-stack {
  display: grid;
  gap: 2rem;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.vision-mission-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 32rem;
}

.course-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.course-slider__track {
  display: flex;
  height: 100%;
  transition: transform 320ms ease;
  will-change: transform;
}

.course-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
}

.course-slider__button {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.course-slider__button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -4px;
}

.course-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 2.2rem;
  height: 2.2rem;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.6);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.course-slider__nav:hover {
  background: rgba(200, 146, 0, 0.9);
  color: var(--ink);
}

.course-slider__nav--prev {
  left: 0.5rem;
}

.course-slider__nav--next {
  right: 0.5rem;
}

.course-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.course-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.course-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
}

.mini-feature {
  display: flex;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.5rem;
  padding: 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.82);
}

.mini-feature__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
}

.mini-feature__title {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.gallery-uniform-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gallery-image-card {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 2rem;
  background: linear-gradient(180deg, #f7f3e8 0%, #efe7d1 100%);
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.08);
}

.gallery-image-button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-image-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2rem;
}

.gallery-image-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f0df;
}

.gallery-empty-state {
  border: 1px dashed rgba(17, 17, 17, 0.16);
  border-radius: 1.5rem;
  padding: 1rem 1.2rem;
  color: rgba(46, 46, 46, 0.75);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.7);
}

.gallery-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(96vw, 1100px);
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  border-radius: 1.75rem;
  background: #111111;
  padding: 0.9rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.gallery-modal__image {
  width: 100%;
  max-height: 85vh;
  border-radius: 1.2rem;
  object-fit: contain;
  background: #1b1b1b;
}

.gallery-modal__caption {
  padding: 0 1rem 0.8rem;
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.gallery-modal__close {
  align-self: flex-end;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
}

.gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.gallery-modal__nav--prev {
  left: 0.8rem;
}

.gallery-modal__nav--next {
  right: 0.8rem;
}

body.modal-open {
  overflow: hidden;
}

.neden-gallery {
  width: 100%;
}

.neden-slider {
  position: relative;
  width: min(100%, 25rem);
  margin: 0 auto;
}

.neden-slider__viewport {
  overflow: hidden;
  border-radius: 1.5rem;
}

.neden-slider__track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.neden-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.neden-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.neden-card__frame {
  display: flex;
  aspect-ratio: 9 / 16;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
  background: #f5f2e8;
}

.neden-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.neden-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.neden-slider__nav:hover {
  background: rgba(200, 146, 0, 0.92);
  color: var(--ink);
}

.neden-slider__nav:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.neden-slider__nav--prev {
  left: 0.75rem;
}

.neden-slider__nav--next {
  right: 0.75rem;
}

.contact-panel {
  border-radius: 2rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(230, 187, 73, 0.18), transparent 26%),
    linear-gradient(155deg, #111111 0%, #292929 100%);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.18);
}

.contact-panel a {
  color: inherit;
}

.contact-line {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
}

.contact-line__label {
  display: inline-flex;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(230, 187, 73, 0.85);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--gold);
  color: var(--ink);
  padding: 0.95rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease;
}

.contact-action:hover {
  transform: translateY(-1px);
  background: var(--gold-soft);
}

.contact-action--outline {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.contact-action--outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.map-card,
.form-card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 2rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
}

.form-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.8rem;
  position: relative;
}

.form-field {
  display: grid;
  gap: 0.6rem;
}

.form-field span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(46, 46, 46, 0.72);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 1.1rem;
  background: white;
  padding: 1rem 1rem;
  font-size: 0.98rem;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(200, 146, 0, 0.8);
  box-shadow: 0 0 0 4px rgba(200, 146, 0, 0.12);
}

#iletisim .form-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, #111111 0%, #2b2b2b 100%);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.22);
}

#iletisim .form-field span {
  color: rgba(255, 255, 255, 0.78);
}

#iletisim .form-field input,
#iletisim .form-field select,
#iletisim .form-field textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

#iletisim .form-field input::placeholder,
#iletisim .form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

#iletisim .form-field input:focus,
#iletisim .form-field select:focus,
#iletisim .form-field textarea:focus {
  border-color: rgba(200, 146, 0, 0.8);
  box-shadow: 0 0 0 4px rgba(200, 146, 0, 0.2);
}

.status-message {
  min-height: 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.status-message.is-success {
  color: #d3f7bf;
}

.status-message.is-error {
  color: #ffd7a8;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .section-space {
    padding: 5rem 0;
  }

  .hero-panel {
    padding: 1.2rem;
  }

  .hero-tv-shell__frame {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-tv-shell__screen {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .site-shell::before {
    background-size: 54px 54px;
  }

  .section-space {
    padding: 4.25rem 0;
  }

  .vision-mission-stack {
    grid-template-rows: none;
  }

  .vision-mission-block {
    min-height: auto;
  }

  .contact-actions {
    flex-direction: column;
  }

  .gallery-modal__nav {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.2rem;
  }

  .gallery-modal__nav--prev {
    left: 0.6rem;
  }

  .gallery-modal__nav--next {
    right: 0.6rem;
  }

  .hero-tv-card {
    padding: 0;
  }

  .hero-tv-shell {
    padding-top: 0;
  }

  .hero-tv-shell__frame {
    grid-template-columns: 1fr;
  }

  .hero-tv-shell__screen {
    min-height: auto;
    padding: 0;
  }

  .hero-tv-shell__controls {
    display: none;
  }

  .hero-tv-shell__speaker {
    width: 2.2rem;
    height: 0.5rem;
  }

  .hero-tv-shell__knob {
    margin-top: 0;
  }

  .hero-tv-shell__stand {
    display: none;
  }

  .hero-tv-shell__stand::before {
    content: none;
  }
}

@media (max-width: 480px) {
  .hero-tv-gallery,
  .hero-tv-gallery__empty {
    border-radius: 0.95rem;
  }
}

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

@media (min-width: 1024px) {
  .gallery-uniform-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .neden-slider {
    width: min(100%, 26rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .mobile-menu,
  .nav-link,
  .footer-link,
  .neden-slider__track,
  .gallery-modal,
  .contact-action,
  .arrow-link {
    transition: none;
  }
}
