.newsletterAlert {
	position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
}

.atilim-medya-img {
  height: 30px;
}

body.maintance {
	min-height: 100vh;
}

body.maintance .body {
	min-height: 100vh;
	display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.brand-img {
    max-width: 192px;
}

.arrow-hide::-webkit-outer-spin-button,
.arrow-hide::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number].arrow-hide {
  -moz-appearance: textfield;
}

form b {
  color: red;
}

.pointer {
  cursor: pointer;
}

.pointer-all > * {
  cursor: pointer;
}

.float{
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  border-radius: 50px;
  font-size: 28px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: none;
}

@media (min-width: 992px) {
  .w-lg-100 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .w-md-100 {
    width: 100%;
  }
}
@media (min-width: 576px) {
  .w-sm-100 {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .w-xs-100 {
    width: 100%;
  }
}

.editor-content * {
  all: revert;
  color: #000;
}

.line-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.line-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.line-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* Header brand: monogram + tipografik isim */
#header .header-brand {
  margin: 0;
}

#header .header-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  max-width: 100%;
}

#header .header-brand-link:hover,
#header .header-brand-link:focus {
  color: #fff;
  text-decoration: none;
}

#header .header-brand-monogram {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

#header .header-brand-link:hover .header-brand-monogram {
  border-color: var(--primary, #0088cc);
  background-color: rgba(255, 255, 255, 0.06);
}

#header .header-brand-text {
  display: none;
  flex-direction: column;
  min-width: 0;
}

#header .header-brand-name {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

#header .header-brand-name--full {
  display: none;
}

#header .header-brand-name--short {
  display: inline;
}

/* Tablet+: monogram + kısa isim */
@media (min-width: 576px) {
  #header .header-brand-text {
    display: flex;
  }

  #header .header-brand-monogram {
    width: 3rem;
    height: 3rem;
    font-size: 1.15rem;
  }
}

/* Desktop: tam isim */
@media (min-width: 992px) {
  #header .header-brand-name--short {
    display: none;
  }

  #header .header-brand-name--full {
    display: inline;
  }

  #header .header-brand-name {
    font-size: 1.5rem;
  }

  #header .header-brand-monogram {
    width: 3.25rem;
    height: 3.25rem;
  }
}

#header .header-lang-switch {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

#header .header-lang-switch img {
  display: block;
  object-fit: cover;
}
html.sticky-header-active #header .header-brand-monogram {
  width: 2.85rem;
  height: 2.85rem;
  font-size: 1.05rem;
}

html.sticky-header-active #header .header-brand-name {
  font-size: 1.35rem;
}

@media (min-width: 992px) {
  html.sticky-header-active #header .header-brand-monogram {
    width: 3rem;
    height: 3rem;
    font-size: 1.1rem;
  }

  html.sticky-header-active #header .header-brand-name {
    font-size: 1.4rem;
  }
}

/* -----------------------*/

/* Tema FA7 font ailesi kullanıyor; sitede FA6 yüklü — dropdown okları için düzeltme */
@media (min-width: 992px) {
  #header .header-nav-main-arrows nav > ul > li > a.dropdown-toggle:after {
    font-family: "Font Awesome 6 Free";
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > a:after {
    font-family: "Font Awesome 6 Free";
  }
}

/* Projeler — kategori kutuları */
.project-category-tile {
  transition: transform .35s ease, box-shadow .35s ease;
}

.project-category-tile:hover {
  transform: translateY(-4px);
}

.project-category-tile__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.project-category-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.project-category-tile:hover .project-category-tile__media img {
  transform: scale(1.04);
}

.project-category-tile__body {
  padding: 1.25rem 0 0.5rem;
}

.project-category-tile__title {
  position: relative;
  padding-left: 2.5rem;
}

.project-category-tile__title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.75rem;
  height: 3px;
  background-color: var(--primary, #ed510e);
  transform: translateY(-50%);
  transition: width .35s ease;
}

.project-category-tile:hover .project-category-tile__title:before {
  width: 2.25rem;
}

.project-category-tile__text {
  padding-left: 2.5rem;
  line-height: 1.55;
}

.project-category-tile__meta {
  padding-left: 2.5rem;
  letter-spacing: .02em;
}

/* Kategori intro — zigzag + kısa metin */
.project-lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 1rem 0;
}

.project-lead__text {
  font-weight: 500;
}

/* Proje detay galeri slider */
.project-gallery-slider .owl-carousel {
  background-color: #111;
}

.project-gallery-slide {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.project-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.project-detail-content p:last-child {
  margin-bottom: 0;
}

.side-menu-our-work .nav-item.active > a {
  font-weight: 700;
}

/* Galeri — mozaik kolon + koyu zemin + hover */
/* Banner’daki çapraz beyaz şerit (page-header:after) görselleri kesmesin */
.site-gallery {
  z-index: 0;
}

@media (min-width: 1200px) {
  .site-gallery {
    padding-top: 5.5rem;
  }
}

.gallery-grid {
  column-count: 1;
  column-gap: 1.25rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (min-width: 1200px) {
  .gallery-grid {
    column-count: 3;
  }
}

.gallery-grid__item {
  position: relative;
  display: block;
  overflow: hidden;
  break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 1.25rem;
  background-color: #141414;
  text-decoration: none;
  outline: none;
}

.gallery-grid__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  transform: scale(1.001);
}

.gallery-grid__zoom {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  margin: -1.5rem 0 0 -1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  background-color: rgba(28, 28, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}

.gallery-grid__item:hover .gallery-grid__img,
.gallery-grid__item:focus-visible .gallery-grid__img {
  transform: scale(1.045);
}

.gallery-grid__item:hover .gallery-grid__zoom,
.gallery-grid__item:focus-visible .gallery-grid__zoom {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-grid__img,
  .gallery-grid__zoom {
    transition: none;
  }

  .gallery-grid__item:hover .gallery-grid__img,
  .gallery-grid__item:focus-visible .gallery-grid__img {
    transform: none;
  }
}

/* Video grid */
.site-video {
  z-index: 0;
}

@media (min-width: 1200px) {
  .site-video {
    padding-top: 5.5rem;
  }
}

/* Eğitimler */
.site-egitim {
  z-index: 0;
}

@media (min-width: 1200px) {
  .site-egitim {
    padding-top: 5.5rem;
  }
}

.egitim-intro {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.egitim-filters {
  gap: 0.55rem 0.65rem;
}

.egitim-filter-btn {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  color: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.45rem 0.95rem;
  border-radius: 0;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.egitim-filter-btn:hover,
.egitim-filter-btn.is-active {
  background: var(--primary, #0088cc);
  border-color: var(--primary, #0088cc);
  color: #fff;
}

.egitim-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.egitim-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e9ecef;
  margin-bottom: 1.15rem;
}

.egitim-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.egitim-card:hover .egitim-card__media img {
  transform: scale(1.04);
}

.egitim-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.egitim-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.egitim-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  color: var(--primary, #0088cc);
  font-size: 0.82rem;
  font-weight: 600;
}

.egitim-card__meta li {
  position: relative;
}

.egitim-card__body > .btn {
  align-self: flex-start;
  margin-top: auto;
}

.egitim-corporate {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.egitim-corporate__list li {
  position: relative;
  padding-left: 1rem;
}

.egitim-corporate__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--primary, #0088cc);
}

.egitim-detail-hero {
  background-size: cover;
  background-position: center;
}

.egitim-detail__aside {
  position: sticky;
  top: 7rem;
}

.egitim-detail__process,
.egitim-detail__trainer {
  padding-bottom: 1.5rem;
}

.egitim-detail__trainer-photo img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.egitim-detail__video {
  aspect-ratio: 16 / 9;
  width: 100%;
  position: relative;
  background: #111;
  overflow: hidden;
}

.egitim-detail__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.egitim-gallery-lightbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform .4s ease;
}

.egitim-gallery-lightbox:hover img {
  transform: scale(1.03);
}

/* Filmler */
.site-film {
  z-index: 0;
}

@media (min-width: 1200px) {
  .site-film {
    padding-top: 5.5rem;
  }
}

.film-intro {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.film-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.film-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #e9ecef;
  margin-bottom: 1.15rem;
}

.film-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.film-card:hover .film-card__media img {
  transform: scale(1.04);
}

.film-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.film-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.film-card__body > .btn {
  align-self: flex-start;
  margin-top: auto;
}

.film-detail-hero {
  background-size: cover;
  background-position: center;
}

.film-detail__aside {
  position: sticky;
  top: 7rem;
}

.film-detail__poster img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.film-detail__video {
  aspect-ratio: 16 / 9;
  width: 100%;
  position: relative;
  background: #111;
  overflow: hidden;
}

.film-detail__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.film-gallery-lightbox img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .4s ease;
}

.film-gallery-lightbox:hover img {
  transform: scale(1.03);
}

/* Makaleler */
.site-makale {
  z-index: 0;
}

@media (min-width: 1200px) {
  .site-makale {
    padding-top: 5.5rem;
  }
}

.makale-intro {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.makale-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.makale-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e9ecef;
  margin-bottom: 1.15rem;
}

.makale-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.makale-card:hover .makale-card__media img {
  transform: scale(1.04);
}

.makale-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.makale-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.makale-card__body > .btn {
  align-self: flex-start;
  margin-top: auto;
}

.makale-detail-hero {
  background-size: cover;
  background-position: center;
}

.makale-detail__cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.makale-detail__content p {
  margin-bottom: 1.1rem;
}

/* Haberler (medya) */
.site-haber {
  z-index: 0;
}

@media (min-width: 1200px) {
  .site-haber {
    padding-top: 5.5rem;
  }
}

.haber-intro {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.haber-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.haber-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e9ecef;
  margin-bottom: 1.15rem;
}

.haber-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.haber-card:hover .haber-card__media img {
  transform: scale(1.04);
}

.haber-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.haber-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.haber-card__body > .btn {
  align-self: flex-start;
  margin-top: auto;
}

.haber-detail-hero {
  background-size: cover;
  background-position: center;
}

.haber-detail__cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.haber-detail__aside {
  position: sticky;
  top: 7rem;
}

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

.video-tile__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: #141414;
}

.video-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  transform: scale(1.001);
}

.video-tile__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 3.25rem;
  height: 3.25rem;
  margin: -1.625rem 0 0 -1.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  background-color: rgba(28, 28, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.75);
  transition: background-color .3s ease, transform .3s ease;
  pointer-events: none;
}

.video-tile__play .fa-play {
  margin-left: 2px;
}

.video-tile__title {
  display: block;
  margin-top: 0.85rem;
  padding-left: 0;
  font-family: var(--font-secondary, "Playfair Display", Georgia, serif);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--secondary, #1c1c1c);
  transition: color .3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-tile__title:before {
  content: '';
  display: block;
  width: 1.75rem;
  height: 2px;
  margin-bottom: 0.55rem;
  background-color: var(--primary, #a67c52);
  transition: width .35s ease;
}

.video-tile:hover .video-tile__img,
.video-tile:focus-visible .video-tile__img {
  transform: scale(1.045);
}

.video-tile:hover .video-tile__play,
.video-tile:focus-visible .video-tile__play {
  background-color: var(--primary);
  transform: scale(1.06);
}

.video-tile:hover .video-tile__title,
.video-tile:focus-visible .video-tile__title {
  color: var(--primary, #a67c52);
}

.video-tile:hover .video-tile__title:before,
.video-tile:focus-visible .video-tile__title:before {
  width: 2.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .video-tile__img,
  .video-tile__play,
  .video-tile__title,
  .video-tile__title:before {
    transition: none;
  }

  .video-tile:hover .video-tile__img,
  .video-tile:focus-visible .video-tile__img {
    transform: none;
  }
}

/* —— Ana sayfa —— */
.home-hero {
  --home-hero-image: none;
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #12100e;
  color: #f7f4ef;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  background-image: var(--home-hero-image);
  background-size: cover;
  background-position: center 18%;
  transform: scale(1.04);
  animation: home-hero- ken 18s ease-out forwards;
}

.home-hero--fallback .home-hero__media {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(166, 124, 82, 0.35), transparent 55%),
    linear-gradient(160deg, #1c1c1c 0%, #2a2118 55%, #12100e 100%);
}

.home-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.82) 0%, rgba(12, 10, 8, 0.45) 48%, rgba(12, 10, 8, 0.2) 100%),
    linear-gradient(0deg, rgba(12, 10, 8, 0.88) 0%, rgba(12, 10, 8, 0.15) 45%, rgba(12, 10, 8, 0.35) 100%);
  pointer-events: none;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  padding: 7.5rem 0 5rem;
  max-width: 48rem;
}

.home-hero__brand {
  margin: 0 0 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: #fff;
}

.home-hero__headline {
  margin: 0 0 1rem;
  font-family: "Lexend", "Poppins", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(247, 244, 239, 0.92);
  max-width: 34rem;
}

.home-hero__support {
  margin: 0 0 2rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(247, 244, 239, 0.78);
  max-width: 28rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.home-hero__actions .btn-outline {
  border-width: 1px;
  border-color: rgba(247, 244, 239, 0.55);
  color: #f7f4ef;
  background: transparent;
}

.home-hero__actions .btn-outline:hover,
.home-hero__actions .btn-outline:focus {
  border-color: #fff;
  color: #12100e;
  background: #fff;
}

.home-kicker {
  display: block;
  margin-bottom: 0.75rem;
  font-family: "Lexend", "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary, #a67c52);
}

.home-kicker--on-dark {
  color: rgba(247, 244, 239, 0.65);
}

.home-section-title {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 500;
  line-height: 1.15;
  color: #1c1c1c;
}

.home-section-title--sm {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  margin-bottom: 1.25rem;
}

.home-section-lead {
  margin: 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #5c5c5c;
}

.home-section-head {
  margin-bottom: 2.5rem;
}

.home-section-foot {
  margin-top: 2rem;
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Lexend", "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary, #a67c52);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.home-link:after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.home-link:hover,
.home-link:focus {
  color: #1c1c1c;
  border-bottom-color: currentColor;
  text-decoration: none;
}

.home-link:hover:after,
.home-link:focus:after {
  transform: translateX(3px);
}

.home-about {
  padding: 0;
  background: #f7f4ef;
}

.home-about__grid {
  min-height: 28rem;
}

.home-about__visual {
  min-height: 22rem;
  background: #1c1c1c;
}

.home-about__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: center 20%;
}

.home-about__copy {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
}

.home-about__title {
  margin: 0 0 1.25rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 500;
  color: #1c1c1c;
}

.home-about__text {
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #3a3a3a;
  max-width: 32rem;
}

.home-films {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: #fff;
}

.home-credit-list {
  border-top: 1px solid rgba(28, 28, 28, 0.12);
}

.home-credit {
  border-bottom: 1px solid rgba(28, 28, 28, 0.12);
}

.home-credit__link {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding: 1.15rem 0;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.25s ease;
}

.home-credit__year {
  font-family: "Lexend", "Poppins", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--primary, #a67c52);
}

.home-credit__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 500;
  color: #1c1c1c;
}

.home-credit__role {
  font-size: 0.9rem;
  color: #8b8b8b;
  text-align: right;
}

.home-credit__link:hover,
.home-credit__link:focus {
  color: inherit;
  text-decoration: none;
  padding-left: 0.35rem;
}

.home-credit__link:hover .home-credit__title,
.home-credit__link:focus .home-credit__title {
  color: var(--primary, #a67c52);
}

.home-stage {
  --home-stage-image: none;
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: var(--home-stage-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.home-stage__veil {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.35);
}

.home-stage__word {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
}

.home-paths {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: #f7f4ef;
}

.home-path-list {
  margin: 0;
}

.home-path-list li + li {
  margin-top: 0.35rem;
}

.home-path-list__link {
  display: inline-block;
  padding: 0.35rem 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  color: #1c1c1c;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.home-path-list__link:hover,
.home-path-list__link:focus {
  color: var(--primary, #a67c52);
  border-bottom-color: currentColor;
  text-decoration: none;
}

.home-contact {
  padding: clamp(2.75rem, 5vw, 3.75rem) 0;
  background: #1c1c1c;
  color: #f7f4ef;
}

.home-contact__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
}

.home-contact__title {
  margin: 0;
  max-width: 55rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 500;
  line-height: 1.3;
  color: rgba(247, 244, 239, 0.86);
}

.home-contact__row .btn {
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .home-contact__row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— Footer —— */
.site-footer {
  background: #141210;
  color: rgba(247, 244, 239, 0.86);
  border-top: 1px solid rgba(247, 244, 239, 0.08);
}

.site-footer .container {
  padding-top: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.site-footer__brand {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(247, 244, 239, 0.86) !important;
  text-decoration: none;
}

.site-footer__brand:hover,
.site-footer__brand:focus {
  color: var(--primary, #a67c52);
  text-decoration: none;
}

.site-footer__tagline {
  margin: 0 0 1.35rem;
  max-width: 16rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(247, 244, 239, 0.62);
}

.site-footer__kicker {
  display: block;
  margin-bottom: 0.9rem;
  font-family: "Lexend", "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary, #a67c52);
}

.site-footer__kicker--spaced {
  margin-top: 1.75rem;
}

.site-footer__stack-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer__stack-nav a {
  color: rgba(247, 244, 239, 0.86) !important;
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.site-footer__stack-nav a:hover,
.site-footer__stack-nav a:focus {
  color: #fff;
  text-decoration: none;
}

.site-footer__stack-nav--muted a {
  color: rgba(247, 244, 239, 0.58);
  font-size: 0.9rem;
}

.site-footer__contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer__contact-link {
  color: rgba(247, 244, 239, 0.86) !important;
  text-decoration: none;
  font-size: 1.02rem;
  word-break: break-word;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus {
  color: var(--primary, #a67c52);
  text-decoration: none;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
  padding: 0;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(247, 244, 239, 0.18);
  color: #f7f4ef;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus {
  border-color: var(--primary, #a67c52);
  color: var(--primary, #a67c52);
  background: rgba(166, 124, 82, 0.08);
  text-decoration: none;
}

.site-footer__bar {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 244, 239, 0.1);
}

.site-footer__copy,
.site-footer__copy * {
  margin: 0;
  color: rgba(247, 244, 239, 0.45) !important;
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-footer--columns .site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem 2rem;
}

@media (max-width: 991px) {
  .site-footer--columns .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .site-footer--columns .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@keyframes home-hero-ken {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@media (max-width: 991px) {
  .home-hero__media.home-hero__media--cropped {
    transform: none !important;
    animation: none !important;
  }

  .home-hero__content {
    padding: 6.5rem 0 3.5rem;
  }

  .home-credit__link {
    grid-template-columns: 3.5rem minmax(0, 1fr);
  }

  .home-credit__role {
    grid-column: 2;
    text-align: left;
    margin-top: -0.35rem;
  }

  .home-stage {
    background-attachment: scroll;
    min-height: 32vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__media {
    animation: none;
    transform: none;
  }

  .home-credit__link,
  .home-link:after,
  .home-path-list__link {
    transition: none;
  }
}

