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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
}

.site-fit {
  width: 100%;
  overflow: hidden;
}

.page {
  width: var(--page);
  max-width: none;
  margin: 0 auto;
  position: relative;
  background-color: var(--navy-2);
  background-image:
    linear-gradient(rgba(6, 29, 52, 0.68), rgba(6, 29, 52, 0.68)),
    url("../assets/images/bg-display.jpg");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 1920px auto;
  overflow: hidden;
  transform-origin: top left;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 220px;
  pointer-events: none;
}

.topbar a,
.topbar button {
  pointer-events: auto;
}

.header-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 160px;
  z-index: 18;
  pointer-events: none;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.22));
}

.logo {
  position: absolute;
  left: 26px;
  top: 8px;
  width: 170px;
  height: 59px;
  z-index: 20;
}

.logo img {
  width: 100%;
  height: 100%;
}

.menu-btn {
  position: absolute;
  left: 50%;
  top: 132px;
  transform: translateX(-50%);
  background: transparent;
  border: 0;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.star-wrap {
  position: absolute;
  left: 910px;
  top: 3px;
  width: 100px;
  height: 170px;
  z-index: 20;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.star-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 96px;
}

.star-wrap span {
  position: absolute;
  left: 50%;
  top: 142px;
  transform: translateX(-50%);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #8f834c;
  white-space: nowrap;
}

.menu-btn svg {
  width: 46px;
  height: 46px;
  fill: var(--gold);
}

.menu-btn span {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.28em;
}

.site-footer {
  position: relative;
  padding: 48px 40px 28px;
  background: linear-gradient(180deg, rgba(6, 29, 52, 0.2), rgba(6, 29, 52, 0.92) 30%, #041526);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 380px 1fr 180px;
  gap: 24px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(143, 131, 76, 0.35);
}

.footer-logo {
  width: 280px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 8px;
}

.footer-cols h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 400;
}

.footer-cols a,
.footer-cols span {
  display: block;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.footer-map {
  text-align: center;
  color: var(--gold);
}

.footer-map svg {
  width: 54px;
  height: 70px;
  display: block;
  margin: 0 auto 10px;
}

.footer-map span {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 16px;
  align-items: end;
  padding-top: 18px;
}

.powered {
  font-family: var(--font-ui);
  font-size: 8px;
  line-height: 1.35;
}

.powered strong {
  display: block;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.legal {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 4px;
}

.footer-contact {
  text-align: right;
  color: var(--gold-soft);
}

.footer-contact .phone {
  font-size: 20px;
  font-weight: 400;
}

.footer-contact .mail {
  font-size: 18px;
  margin-top: 8px;
}

.copy {
  grid-column: 3;
  text-align: right;
  font-size: 10px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}


.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  z-index: 200;
  display: block;
  color: #8f834c;
  overflow: hidden;
  transform-origin: top left;
  font-family: "Outfit", sans-serif;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
  background: #10243c;
}

.menu-frost {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 868px;
  background: rgba(16, 36, 60, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  clip-path: path("M 1920 0 L 0 0 L 0 833.469 L 872.673 833.469 C 884.761 833.469 895.929 839.926 901.96 850.401 C 907.992 860.877 919.16 867.333 931.248 867.333 L 988.752 867.333 C 1000.84 867.333 1012.008 860.877 1018.04 850.401 C 1024.071 839.926 1035.239 833.469 1047.327 833.469 L 1920 833.469 L 1920 0 Z");
  pointer-events: none;
  opacity: 0;
  transform: translateY(-28px);
  transition:
    opacity 0.5s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay.is-open .menu-frost {
  opacity: 1;
  transform: translateY(0);
}

/* Menu content entrance */
.menu-brand,
.menu-lang,
.menu-search,
.menu-line-top,
.menu-map-pin,
.menu-map-art,
.menu-map-dot,
.menu-social,
.menu-phone-block,
.menu-line-mid,
.menu-mesafe,
.menu-close,
.menu-dots {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.menu-overlay.is-open .menu-brand,
.menu-overlay.is-open .menu-lang,
.menu-overlay.is-open .menu-search,
.menu-overlay.is-open .menu-close {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.menu-overlay.is-open .menu-line-top {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.menu-overlay.is-open .menu-map-pin,
.menu-overlay.is-open .menu-map-art,
.menu-overlay.is-open .menu-map-dot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.22s;
}

.menu-overlay.is-open .menu-social,
.menu-overlay.is-open .menu-phone-block {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.menu-overlay.is-open .menu-line-mid,
.menu-overlay.is-open .menu-mesafe,
.menu-overlay.is-open .menu-dots {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.34s;
}

.menu-home,
.menu-row {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.menu-overlay.is-open .menu-home {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

.menu-overlay.is-open .menu-row.r-proje {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.22s;
}

.menu-overlay.is-open .menu-row.r-medya {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}

.menu-overlay.is-open .menu-row.r-kat {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.menu-overlay.is-open .menu-row.r-ilet {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.34s;
}

@media (prefers-reduced-motion: reduce) {
  .menu-overlay,
  .menu-frost,
  .menu-brand,
  .menu-lang,
  .menu-search,
  .menu-line-top,
  .menu-nav,
  .menu-map-pin,
  .menu-map-art,
  .menu-map-dot,
  .menu-social,
  .menu-phone-block,
  .menu-line-mid,
  .menu-mesafe,
  .menu-close,
  .menu-dots,
  .menu-home,
  .menu-row {
    transition: none !important;
    transform: none !important;
  }

  .menu-overlay:not(.is-open) {
    opacity: 0;
  }

  .menu-overlay.is-open .menu-frost,
  .menu-overlay.is-open .menu-brand,
  .menu-overlay.is-open .menu-lang,
  .menu-overlay.is-open .menu-search,
  .menu-overlay.is-open .menu-line-top,
  .menu-overlay.is-open .menu-nav,
  .menu-overlay.is-open .menu-map-pin,
  .menu-overlay.is-open .menu-map-art,
  .menu-overlay.is-open .menu-map-dot,
  .menu-overlay.is-open .menu-social,
  .menu-overlay.is-open .menu-phone-block,
  .menu-overlay.is-open .menu-line-mid,
  .menu-overlay.is-open .menu-mesafe,
  .menu-overlay.is-open .menu-close,
  .menu-overlay.is-open .menu-dots,
  .menu-overlay.is-open .menu-home,
  .menu-overlay.is-open .menu-row {
    opacity: 1;
  }
}

.menu-brand {
  position: absolute;
  left: 788px;
  top: 16px;
  width: 344px;
  height: 122px;
  z-index: 3;
}

.menu-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.menu-lang {
  position: absolute;
  left: auto;
  right: 48px;
  top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #8f834c;
  z-index: 5;
  white-space: nowrap;
}

.menu-lang__link {
  color: rgba(143, 131, 76, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1;
}

.menu-lang__link:hover,
.menu-lang__link.is-active {
  color: #8f834c;
}

.menu-lang__sep {
  opacity: 0.45;
  line-height: 1;
}

.menu-lang svg { display: none; }

/* Decorative search sits under old EN slot — hide to avoid clash with TR|EN */
.menu-search {
  display: none;
}

/* Header language switcher — on <body>, outside scaled artboard */
.lang-switch {
  position: fixed;
  right: 24px;
  top: 18px;
  left: auto;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #8f834c;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: auto;
}

/* Avoid double TR|EN when menu overlay is open */
body.menu-open .lang-switch {
  visibility: hidden;
  pointer-events: none;
}

.lang-switch__link {
  color: rgba(143, 131, 76, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lang-switch__link:hover,
.lang-switch__link.is-active {
  color: #8f834c;
}

.lang-switch__sep {
  opacity: 0.45;
  color: #8f834c;
}

.menu-search {
  display: none !important;
}

.menu-line-top {
  position: absolute;
  left: 0;
  top: 148px;
  width: 1920px;
  height: 1px;
  background: #8f834c;
  pointer-events: none;
}

.menu-nav {
  position: absolute;
  left: 94px;
  top: 237px;
  width: 560px;
  height: 320px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  z-index: 3;
}

.menu-nav a {
  color: #8f834c;
  white-space: nowrap;
}

.menu-home {
  position: absolute;
  left: 0;
  top: 0;
}

.menu-row {
  position: absolute;
  left: 0;
  width: 240px;
  z-index: 1;
}

.menu-row:hover,
.menu-row:focus-within {
  width: 100%;
  z-index: 5;
}

.menu-row.r-proje { top: 65px; }
.menu-row.r-medya { top: 130px; }
.menu-row.r-kat { top: 195px; }
.menu-row.r-ilet { top: 260px; }

.menu-main {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.menu-row:hover .menu-main,
.menu-row:focus-within .menu-main,
.menu-home:hover,
.menu-nav a.is-active {
  font-weight: 700;
}

.menu-row:hover .menu-main::after,
.menu-row:focus-within .menu-main::after {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 239px;
  height: 1px;
  background: #8f834c;
}

.menu-sub {
  position: absolute;
  left: 257px;
  top: 0;
  display: none;
  flex-direction: column;
  gap: 45px;
}

.menu-row:hover .menu-sub,
.menu-row:focus-within .menu-sub {
  display: flex;
}

.menu-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-sub-chevron {
  width: 11px;
  height: 18px;
  transform: rotate(180deg);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.menu-sub a:hover .menu-sub-chevron,
.menu-row:hover .menu-sub:not(:has(a:hover)) a:first-child .menu-sub-chevron {
  opacity: 1;
}

.menu-map-pin {
  position: absolute;
  left: 935px;
  top: 177px;
  width: 50px;
  text-align: center;
  z-index: 4;
  color: #fff;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.menu-map-pin img {
  width: 50px;
  height: 68px;
  margin: 0 auto 16px;
  max-width: none;
}

.menu-map-art {
  position: absolute;
  left: 960px;
  top: 252px;
  width: 960px;
  height: 501px;
  overflow: hidden;
  z-index: 2;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 90px);
  mask-image: linear-gradient(90deg, transparent 0, #000 90px);
}

.menu-map-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
}

.menu-map-dot {
  position: absolute;
  left: 1087px;
  top: 601px;
  width: 42px;
  height: 54px;
  z-index: 4;
  pointer-events: none;
}

.menu-social {
  position: absolute;
  left: 1564px;
  top: 178px;
  height: 50px;
  display: flex;
  align-items: center;
  z-index: 4;
}

.menu-social-icons {
  display: flex;
  align-items: center;
}

.menu-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.menu-social-icons a img {
  display: block;
}

.menu-social-icons a[aria-label="Instagram"] img {
  width: 24px;
  height: 24px;
}

.menu-social-icons a[aria-label="LinkedIn"] {
  margin-left: 9px;
}

.menu-social-icons a[aria-label="LinkedIn"] img,
.menu-social-icons a[aria-label="X"] img {
  width: 20px;
  height: 20px;
}

.menu-social-icons a[aria-label="X"] {
  margin-left: 17px;
}

.menu-social-rule {
  width: 1px;
  height: 50px;
  margin-left: 15px;
  margin-right: 15px;
  background: #8f834c;
  flex-shrink: 0;
}

.menu-social-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.menu-social-caption {
  font-family: Outfit, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(143, 131, 76, 0.55);
  white-space: nowrap;
  line-height: 1.2;
}

.menu-handle {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #8f834c;
  line-height: 1.15;
  white-space: nowrap;
}

.menu-phone-block {
  position: absolute;
  left: 92px;
  top: 768px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #8f834c;
  z-index: 3;
}

.menu-phone-block img {
  width: 31px;
  height: 31px;
  max-width: none;
}

.menu-line-mid {
  position: absolute;
  left: 1040px;
  top: 804px;
  width: 630px;
  height: 1px;
  background: #8f834c;
  z-index: 3;
}

.menu-mesafe {
  position: absolute;
  left: 1685px;
  top: 809px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  color: #8f834c;
  white-space: nowrap;
  z-index: 3;
}

.menu-mesafe svg {
  width: 11px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.menu-close {
  position: absolute;
  left: 910px;
  top: 778px;
  width: 100px;
  height: 160px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 5;
}

.menu-close img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 96px;
}

.menu-close .menu-close-chevron {
  position: absolute;
  left: 38px;
  top: 101px;
  width: 13px;
  height: 24px;
  transform: rotate(90deg);
}

.menu-close span {
  position: absolute;
  left: 50%;
  top: 132px;
  transform: translateX(-50%);
  font-size: 15px;
  font-weight: 400;
  color: #8f834c;
  white-space: nowrap;
}

.menu-dots {
  position: absolute;
  left: 930px;
  top: 1014px;
  display: flex;
  gap: 5px;
  z-index: 3;
}

.menu-dots i {
  width: 11px;
  height: 11px;
  border: 1px solid #8f834c;
  border-radius: 50%;
  display: block;
}

.inner-hero {
  padding: 220px 74px 40px;
  min-height: 320px;
}

.page-kicker {
  text-align: center;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
}

.page-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  margin: 0;
}

.page-title.gold-rule {
  display: inline-block;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
}