:root {
  --teal: #0198a7;
  --teal-dark: #017a87;
  --mustard: #9a8f1a;
  --ink: #1a1a1a;
  --muted: #666666;
  --line: #e3e3e3;
  --bg-soft: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 13px 16px rgba(0, 0, 0, 0.03);
  --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.05);
  --font-serif: "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  --container: min(1280px, calc(100% - 48px));
  --header-h: 128px;
  --nav-ink: #1f3a45;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container-wide {
  width: min(1440px, calc(100% - 48px));
  margin-inline: auto;
}

/* Top bar */
.topbar {
  height: 10px;
  background: #3f7f8d;
  overflow: hidden;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid #eceff1;
  box-shadow: 0 6px 14px rgba(20, 40, 48, 0.04);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 18px 28px 18px 0;
  margin-right: 0;
  border-right: 1px solid #e4e8ea;
}

.brand img {
  width: 250px;
  height: 58px;
  object-fit: contain;
}

.brand-fallback {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-fallback small {
  display: block;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: #444;
  max-width: 220px;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0 16px;
  border-right: 1px solid #e4e8ea;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px 12px;
  color: var(--nav-ink);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: color 0.2s ease;
}

.nav-ico {
  display: none;
}

.nav-label {
  line-height: 1.1;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: #2a2a2a;
  border-radius: 1px;
}

.nav a.is-active {
  color: var(--ink);
  box-shadow: none;
}

.social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
  padding-left: 16px;
}

.social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--nav-ink);
  border: 1px solid #c5ced4;
  border-radius: 50%;
  background: #fff;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social a:hover {
  color: var(--teal);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social .nsosyal img {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  align-self: center;
  margin-left: auto;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #222;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  --hero-h: min(68vh, 620px);
  --hero-content-w: min(1100px, calc(100% - 48px));
  --hero-pad-x: max(24px, calc((100% - var(--hero-content-w)) / 2));
  --hero-dots-h: 46px;
  --hero-nav-w: 72px;
  position: relative;
  background: #111;
  overflow: hidden;
  width: 100%;
  min-height: var(--hero-h);
  height: var(--hero-h);
  contain: layout;
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  height: 100%;
  background-color: #111;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-decoration: none;
}

.hero-slide picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  z-index: 0;
  pointer-events: none;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 45%,
    rgba(0, 0, 0, 0.4) 72%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.hero-caption {
  position: absolute;
  left: var(--hero-pad-x);
  right: auto;
  bottom: var(--hero-dots-h);
  z-index: 2;
  box-sizing: border-box;
  width: calc(100vw - var(--hero-pad-x) - var(--hero-nav-w));
  max-width: calc(100vw - var(--hero-pad-x) - var(--hero-nav-w));
  pointer-events: none;
}

.hero-caption p {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.55vw + 0.63rem, 2.36rem);
  font-weight: 700;
  line-height: 1.22;
  text-align: left;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: manual;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  animation: fadeUp 0.7s ease both;
}

.hero-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 12px;
  z-index: 2;
}

.hero-nav button {
  pointer-events: auto;
  width: 54px;
  height: 54px;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-nav button:hover {
  opacity: 1;
  transform: scale(1.05);
}

.hero-dots {
  position: absolute;
  left: var(--hero-pad-x, 48px);
  right: auto;
  bottom: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  z-index: 2;
  padding: 0;
}

.hero-dots button {
  width: auto;
  min-width: 10px;
  height: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-dots button::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.28s ease, background 0.2s ease;
}

.hero-dots button.is-active::after,
.hero-dots button:hover::after,
.hero-dots button:focus-visible::after {
  width: 36px;
  background: #fff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section title */
.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 18px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 4px;
  border-radius: 2px;
  background: var(--teal);
}

.section-title.center {
  display: block;
  text-align: center;
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* About — hero altı kart */
.about {
  padding: 40px 0 72px;
  background: #e9eef1;
}

.about .container {
  max-width: min(1100px, 100% - 48px);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(20, 40, 50, 0.08);
  overflow: hidden;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 40px 40px 44px;
}

.about-title {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  font-weight: 700;
  color: #1a2430;
  line-height: 1.25;
  position: relative;
  padding-bottom: 12px;
}

.about-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: #3d7ea6;
}

.about-copy p {
  margin: 0 0 26px;
  color: #44505c;
  font-size: 0.96rem;
  line-height: 1.7;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  background: #3d7ea6;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.2s ease;
}

.about-cta:hover {
  background: #32698c;
  color: #fff;
}

.about-media {
  min-height: 340px;
  background: #d7e0e5;
}

.about-media .main-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center center;
  background: #eee;
}

/* News (Haberler) */
.news {
  padding: 88px 0 100px;
  background: #fff;
}

.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.news-head .section-title {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 0;
  padding-bottom: 12px;
}

.news-head .section-title::after {
  width: 72px;
  height: 4px;
}

.news-all {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0198a7;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.news-all::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.news-all:hover::after {
  transform: scaleX(0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.92rem;
  font-weight: 600;
  background: #fff;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.news-mosaic {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: repeat(2, minmax(250px, 32vh));
  gap: 16px;
  min-height: 520px;
}

.news-card {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  border-radius: 14px;
  color: #fff;
  background: #1a2a2e;
  isolation: isolate;
}

.news-main {
  grid-row: 1 / span 2;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.01);
  transform-origin: center top;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 20, 24, 0.02) 28%,
    rgba(8, 20, 24, 0.52) 66%,
    rgba(8, 20, 24, 0.9) 100%
  );
  z-index: 1;
  transition: background 0.35s ease;
}

.news-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 22px 24px;
}

.news-main .news-copy {
  padding: 30px 34px 34px;
}

.news-copy h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-wrap: balance;
}

.news-main .news-copy h3 {
  font-size: clamp(1.25rem, 1.85vw, 1.7rem);
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}

.news-copy p {
  margin: 12px 0 0;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.5;
}

.news-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-card:hover::after {
  background: linear-gradient(
    180deg,
    rgba(1, 92, 102, 0.1) 18%,
    rgba(8, 20, 24, 0.6) 64%,
    rgba(8, 20, 24, 0.92) 100%
  );
}

.news-main:hover .news-cta {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.news-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* Social stage */
.social-stage {
  --social-accent: #4ec3d1;
  padding: 88px 0 92px;
  background: #121b24;
  color: #fff;
}

.social-stage .section-title {
  color: #fff;
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  padding-bottom: 12px;
}

.social-stage .section-title::after {
  width: 72px;
  height: 3px;
  background: var(--social-accent);
}

.social-stage-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.social-stage-lead {
  margin: 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.55;
}

.social-stage-handle {
  margin: 0;
  padding-top: 6px;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--social-accent);
  white-space: nowrap;
}

.social-stage-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
  align-items: stretch;
}

.social-portrait {
  position: relative;
  display: block;
  min-height: 480px;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
  background: #1a2730;
}

.social-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 16, 22, 0.05) 32%,
    rgba(8, 16, 22, 0.55) 68%,
    rgba(8, 16, 22, 0.92) 100%
  );
}

.social-portrait-copy {
  position: absolute;
  left: 0;
  right: 72px;
  bottom: 0;
  z-index: 1;
  padding: 28px 28px 30px;
}

.social-portrait-copy span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--social-accent);
}

.social-portrait-copy strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-width: 22ch;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  font-weight: 700;
  line-height: 1.25;
}

.social-portrait-go {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(12, 22, 30, 0.72);
  border: 1px solid rgba(78, 195, 209, 0.65);
  color: var(--social-accent);
}

.social-portrait-go svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-portrait:hover img {
  transform: scale(1.04);
}

.social-quotes {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  min-height: 480px;
}

.social-quote {
  margin: 0;
  padding: 18px 20px;
  background: #1a2430;
  border: 1px solid rgba(78, 195, 209, 0.18);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.social-quote:hover {
  background: #203040;
  border-color: rgba(78, 195, 209, 0.35);
}

.social-quote-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1877f2;
  color: #fff;
  flex-shrink: 0;
}

.social-quote-icon svg,
.social-quote-icon img {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-stage[data-active-platform="x"] .social-quote-icon { background: #111; }
.social-stage[data-active-platform="instagram"] .social-quote-icon {
  background: linear-gradient(45deg, #f58529, #dd2a7b 55%, #8134af);
}
.social-stage[data-active-platform="linkedin"] .social-quote-icon { background: #0a66c2; }
.social-stage[data-active-platform="youtube"] .social-quote-icon { background: #ff0033; }
.social-stage[data-active-platform="nsosyal"] .social-quote-icon { background: #1f6feb; }

.social-quote-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  min-height: 100%;
}

.social-quote p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.5;
  color: #fff;
  text-wrap: balance;
}

.social-quote a,
.social-quote-play {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--social-accent);
  letter-spacing: 0.01em;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.social-quote a:hover,
.social-quote-play:hover {
  color: #fff;
}

.social-portrait.is-playable .social-portrait-go {
  background: rgba(255, 0, 51, 0.88);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.social-follow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.social-follow button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 56px;
  padding: 0 14px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, color 0.22s ease;
  cursor: pointer;
}

.social-follow .follow-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.social-follow .follow-ico svg,
.social-follow .follow-ico img {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

.social-follow .follow-fb .follow-ico { background: #1877f2; }
.social-follow .follow-x .follow-ico { background: #111; }
.social-follow .follow-ig .follow-ico {
  background: linear-gradient(45deg, #f58529, #dd2a7b 55%, #8134af);
}
.social-follow .follow-in .follow-ico { background: #0a66c2; }
.social-follow .follow-yt .follow-ico { background: #ff0033; }
.social-follow .follow-n .follow-ico { background: #1f6feb; }

.social-follow button > span:not(.follow-ico) {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-follow .follow-chevron {
  width: 16px;
  height: 16px;
  fill: var(--social-accent);
  flex-shrink: 0;
  margin-left: auto;
}

.social-follow button:hover,
.social-follow button.is-active {
  transform: translateY(-1px);
  border-color: rgba(78, 195, 209, 0.55);
  background: rgba(78, 195, 209, 0.12);
}

.social-follow button.is-active {
  box-shadow: inset 0 0 0 1px rgba(78, 195, 209, 0.35);
}

.social-player {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 10, 16, 0.82);
  backdrop-filter: blur(4px);
}

.social-player[hidden] {
  display: none !important;
}

.social-player-dialog {
  position: relative;
  width: min(420px, 100%);
  background: #121a22;
  border: 1px solid rgba(78, 195, 209, 0.28);
  border-radius: 18px;
  padding: 18px 16px 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.social-player-close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.social-player-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.social-player-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(72vh, 640px);
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.social-player-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.social-player-title {
  margin: 12px 4px 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
}

/* Duties */
.duties {
  padding: 72px 0 96px;
  background: #f3f5f6;
}

.duties .section-title {
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  margin-bottom: 28px;
  padding-bottom: 12px;
}

.duties .section-title::after {
  width: 72px;
}

.duties-card {
  background: #fff;
  border: 1px solid #e7ebed;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 35, 40, 0.06);
  padding: 44px 40px;
}

.duties-grid {
  columns: 4;
  column-gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.duties-grid li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 16px;
  color: #222;
  break-inside: avoid;
}

.duties-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--teal);
}

.duties-grid strong {
  display: block;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
}

.duties-grid span {
  display: block;
  margin-top: 3px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #6a737a;
  line-height: 1.4;
}

/* Footer */
.site-footer {
  color: #fff;
}

.footer-cta {
  background: #015c66;
}

.footer-cta-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.footer-cta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 20px 22px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.2s ease;
}

.footer-cta-item:last-child {
  border-right: 0;
}

.footer-cta-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-cta-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.footer-cta-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.footer-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.footer-cta-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.footer-cta-value {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
}

.footer-main {
  position: relative;
  background: #0d1a1f;
  padding: 40px 0 0;
  overflow: hidden;
}

.footer-main::before,
.footer-main::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(120px, 10vw);
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.7px, transparent 0.8px);
  background-size: 12px 12px;
}

.footer-main::before { left: 0; }
.footer-main::after { right: 0; }

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand nav"
    "copy icons";
  column-gap: 28px;
  row-gap: 0;
  align-items: center;
}

.footer-brand {
  grid-area: brand;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  width: 220px;
  height: 51px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-nav {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 8px;
  list-style: none;
  margin: 0;
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-nav a:hover {
  background: rgba(1, 152, 167, 0.28);
  color: #9fe3ea;
}

.footer-social-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 0;
}

.footer-social-title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.footer-handle {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #4ec3d1;
}

.footer-social {
  grid-area: icons;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px 0;
}

.footer-social a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-3px);
  color: #fff;
  outline: none;
}

.footer-social a.fs-fb:hover { background: #1877f2; border-color: #1877f2; }
.footer-social a.fs-x:hover { background: #111; border-color: #fff; }
.footer-social a.fs-ig:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b 55%, #8134af);
  border-color: transparent;
}
.footer-social a.fs-in:hover { background: #0a66c2; border-color: #0a66c2; }
.footer-social a.fs-yt:hover { background: #ff0000; border-color: #ff0000; }
.footer-social a.fs-ns:hover { background: #0b4fbf; border-color: #0b4fbf; }

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social .nsosyal img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #091418;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 12px 0;
}

.footer-copy,
.footer-credit {
  margin: 0;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: inherit;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
}

.footer-credit:hover {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
}

.footer-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-top:hover {
  background: rgba(1, 152, 167, 0.3);
  border-color: #4ec3d1;
  color: #4ec3d1;
}

/* Mobile drawer */
.mobile-panel {
  display: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding: 32px 28px 28px;
  }

  .about-media,
  .about-media .main-photo {
    min-height: 260px;
  }

  .duties-grid {
    columns: 2;
  }
}

@media (max-width: 992px) {
  .nav,
  .header-inner > .social {
    display: none;
  }

  .header-inner {
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    padding: 0;
  }

  .mobile-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-top: 1px solid transparent;
  }

  .mobile-panel.is-open {
    max-height: 480px;
    border-top-color: var(--line);
  }

  .brand {
    border-right: 0;
    margin-right: 0;
    padding: 12px 0;
  }

  .mobile-panel .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 12px 0 8px;
    border-right: 0;
  }

  .mobile-panel .nav a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
  }

  .mobile-panel .nav a:hover::after,
  .mobile-panel .nav a:focus-visible::after,
  .mobile-panel .nav a.is-active::after {
    display: none;
  }

  .mobile-panel .social {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    padding: 16px 0 20px 0;
  }

  .news-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(320px, 40vh) minmax(200px, 26vh);
    min-height: 0;
  }

  .news-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .social-stage-grid {
    grid-template-columns: 1fr;
  }

  .social-portrait {
    min-height: 280px;
    aspect-ratio: 16 / 11;
  }

  .social-quotes {
    min-height: 0;
    grid-template-rows: none;
  }

  .social-follow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .social-stage-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
  }

  .social-stage-handle {
    padding-top: 0;
  }

}

@media (max-width: 768px) {
  :root {
    --header-h: 96px;
    --container: min(100% - 32px, 1280px);
  }

  .topbar {
    height: 8px;
  }

  .brand img {
    width: 200px;
    height: 46px;
  }

  .hero {
    --hero-h: min(52vh, 420px);
    --hero-content-w: min(1100px, calc(100% - 24px));
    --hero-pad-x: 16px;
    --hero-dots-h: 42px;
    --hero-nav-w: 64px;
    min-height: var(--hero-h);
    height: var(--hero-h);
  }

  .hero-caption {
    left: 16px;
    width: calc(100vw - 80px);
    max-width: calc(100vw - 80px);
  }

  .hero-caption p {
    font-size: clamp(1.02rem, 3.9vw, 1.28rem);
    line-height: 1.28;
  }

  .hero-slide-photo {
    object-position: 50% 50%;
  }

  .hero-dots {
    bottom: 12px;
  }

  .hero-nav button {
    width: 40px;
    font-size: 1.8rem;
  }

  .about {
    padding: 28px 0 48px;
  }

  .about .container {
    max-width: min(1100px, 100% - 24px);
  }

  .about-panel {
    border-radius: 12px;
  }

  .about-copy {
    padding: 26px 20px 24px;
  }

  .about-media,
  .about-media .main-photo {
    min-height: 220px;
  }

  .news {
    padding: 56px 0 68px;
  }

  .social-stage {
    padding: 56px 0 64px;
  }

  .social-stage .section-title {
    font-size: 1.85rem;
  }

  .social-stage .section-title::after {
    width: 56px;
    height: 4px;
  }

  .social-stage-lead {
    max-width: none;
    font-size: 0.95rem;
  }

  .social-portrait,
  .social-quote {
    border-radius: 14px;
  }

  .social-portrait-copy {
    right: 64px;
    padding: 20px 18px 22px;
  }

  .social-portrait-copy strong {
    max-width: none;
    font-size: 1.25rem;
  }

  .social-follow {
    grid-template-columns: 1fr 1fr;
  }

  .social-quote {
    padding: 16px;
    grid-template-columns: 40px 1fr;
  }

  .social-quote-icon {
    width: 40px;
    height: 40px;
  }

  .social-quote p {
    font-size: 0.98rem;
  }

  .social-follow a {
    min-height: 50px;
    border-radius: 10px;
    font-size: 0.9rem;
  }

  .news-head {
    margin-bottom: 20px;
    align-items: center;
  }

  .news-head .section-title {
    font-size: 1.85rem;
  }

  .news-head .section-title::after {
    width: 56px;
    height: 5px;
  }

  .news-all {
    font-size: 0.9rem;
  }

  .news-all span {
    display: none;
  }

  .news-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .news-card,
  .news-main {
    min-height: 220px;
    aspect-ratio: 16 / 11;
    border-radius: 16px;
  }

  .news-copy {
    padding: 18px 18px 20px;
  }

  .news-main .news-copy {
    padding: 18px 18px 20px;
  }

  .news-copy h3,
  .news-main .news-copy h3 {
    font-size: 1.15rem;
    max-width: none;
    white-space: normal;
    text-overflow: unset;
    text-wrap: balance;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .news-copy p,
  .news-cta {
    display: none;
  }

  .duties {
    padding: 56px 0 72px;
  }

  .duties-card {
    padding: 26px 18px;
    border-radius: 14px;
  }

  .duties-grid {
    columns: 1;
  }

  .footer-cta {
    background: #13252b;
    padding: 18px 0 8px;
  }

  .footer-cta-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-cta-item {
    border-right: 0;
    border-bottom: 0;
    min-height: 0;
    padding: 18px 16px;
    border-radius: 14px;
    background: #1b3138;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-cta-item:hover {
    background: #234049;
  }

  .footer-cta-kicker {
    color: #4ec3d1;
  }

  .footer-cta-icon {
    border-color: rgba(78, 195, 209, 0.45);
    background: rgba(78, 195, 209, 0.08);
  }

  .footer-main {
    padding-top: 28px;
  }

  .footer-main::before,
  .footer-main::after {
    display: none;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy"
      "nav"
      "icons";
    row-gap: 8px;
  }

  .footer-brand,
  .footer-nav,
  .footer-social-copy,
  .footer-social {
    border-bottom: 0;
    padding: 0;
  }

  .footer-brand {
    padding-bottom: 8px;
  }

  .footer-social-copy {
    padding: 10px 0 6px;
  }

  .footer-social-title {
    color: #4ec3d1;
  }

  .footer-handle {
    font-size: 1.35rem;
  }

  .footer-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 6px 0 10px;
  }

  .footer-social {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: stretch;
    gap: 10px;
    width: 100%;
    padding: 8px 0 4px;
  }

  .footer-social a {
    width: 100%;
    height: 52px;
  }

  .footer-nav a {
    width: 100%;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 2px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
  }

  .footer-nav a::after {
    content: "›";
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.2rem;
    line-height: 1;
  }

  .footer-nav a:hover {
    background: transparent;
    color: #4ec3d1;
  }

  .footer-bottom {
    background: transparent;
    border-top: 0;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 0 24px;
  }

  .footer-copy {
    text-align: center;
  }

  .footer-bottom-actions {
    width: 100%;
  }

  .footer-credit {
    min-height: 50px;
    font-size: 0.88rem;
    font-weight: 400;
  }

  .footer-top {
    flex: 1;
    min-height: 50px;
    border-radius: 10px;
    color: #4ec3d1;
    border-color: rgba(78, 195, 209, 0.45);
  }
}

@media (max-width: 480px) {
  .hero-caption p {
    font-size: clamp(0.98rem, 4.2vw, 1.12rem);
    line-height: 1.3;
  }

  .btn-outline {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

/* Contact page */
.page-contact {
  background: #fff;
  padding-bottom: 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 400px) 1fr;
  gap: 28px 36px;
  align-items: stretch;
}

.contact-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 550 / 720;
  box-shadow: 0 10px 28px rgba(20, 40, 48, 0.08);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.contact-panels {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.contact-card {
  padding: 28px 28px 26px;
  border: 1px solid #e8ecee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 40, 48, 0.05);
}

.contact-subtitle {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #141414;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  font-style: normal;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--teal);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-label {
  margin: 0;
  font-weight: 700;
  color: #111;
  font-size: 0.95rem;
}

.contact-item p {
  margin: 0;
  color: #222;
  line-height: 1.45;
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-item a {
  color: #222;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--teal);
}

.contact-social-card {
  margin-top: auto;
}

.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 16px;
}

.contact-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
}

.contact-social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid #d8dee2;
  border-radius: 50%;
  color: var(--nav-ink, #1f3a45);
  background: #fff;
}

.contact-social-icons a:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.contact-handle {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-weight: 700;
  font-size: 1.05rem;
}

.contact-handle p {
  margin: 0;
}

.contact-handle-line {
  display: block;
  width: 3px;
  height: 28px;
  border-radius: 2px;
  background: var(--teal);
}

.contact-social-note {
  margin: 0;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 48ch;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-photo {
    max-width: 380px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .contact-card {
    padding: 22px 18px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-social-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Gallery page */
.page-gallery {
  position: relative;
  background: #fff;
  padding-bottom: 80px;
  overflow: hidden;
}

.page-gallery::before {
  content: "";
  position: absolute;
  right: -40px;
  top: 40px;
  width: 220px;
  height: 220px;
  opacity: 0.08;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 30%, #9aa3a9 1.2px, transparent 1.3px) 0 0 / 14px 14px,
    linear-gradient(135deg, transparent 40%, rgba(31, 58, 69, 0.35) 40%, transparent 70%);
}

.gallery-head {
  padding: 8px 0 22px;
  text-align: left;
}

.gallery-title {
  margin: 0;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.gallery-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.gallery-download svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.gallery-download:hover {
  background: var(--teal);
  color: #fff;
}

.gallery-status {
  margin: 0 0 18px;
  color: #4a5963;
  font-size: 0.95rem;
}

.gallery-status.is-error {
  color: #8a2f2f;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #eef2f4;
  aspect-ratio: 3 / 4;
}

.gallery-item-link {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-dl {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0;
  background: rgba(18, 42, 51, 0.72);
  color: #fff;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.gallery-item-dl svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.gallery-item:hover .gallery-item-dl,
.gallery-item:focus-within .gallery-item-dl,
.gallery-item-dl:focus-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.gallery-item-dl:hover,
.gallery-item-dl:focus-visible {
  background: var(--teal);
}

.gallery-item[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .gallery-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-download {
    justify-content: center;
  }

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

  .gallery-item-dl {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

/* News listing page */
.page-news {
  background: #fff;
  padding: 36px 0 80px;
}

.news-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.news-page-title {
  margin: 0;
}

.news-search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 280px);
  min-height: 46px;
  padding: 0 16px 0 42px;
  border: 1px solid #d9dee3;
  border-radius: 999px;
  background: #fff;
}

.news-search svg {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  fill: #8a949b;
}

.news-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  color: #222;
}

.news-search input::placeholder {
  color: #9aa3a9;
}

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

.news-board {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.news-feature {
  position: relative;
  display: block;
  min-height: 560px;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  background: #1a2730;
}

.news-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 16, 22, 0.05) 35%,
    rgba(8, 16, 22, 0.55) 68%,
    rgba(8, 16, 22, 0.92) 100%
  );
}

.news-feature-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px 28px 24px;
}

.news-feature-copy h2 {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  max-width: 18ch;
}

.news-feature-copy p {
  display: none;
}

.news-feature-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.news-feature-meta-left {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.86);
}

.news-feature-meta-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-feature-meta-left svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.news-feature-go {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  flex-shrink: 0;
}

.news-feature-go svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.news-feature:hover img {
  transform: scale(1.04);
}

.news-side-grid,
.news-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.news-side-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #edf0f2;
  box-shadow: 0 8px 20px rgba(20, 40, 48, 0.05);
  color: #111;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.news-side-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(20, 40, 48, 0.1);
}

.news-side-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f4;
}

.news-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-side-card:hover img {
  transform: scale(1.04);
}

.news-side-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 16px 14px;
  flex: 1;
}

.news-side-body h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  min-height: 2.7em;
}

.news-side-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #8a949b;
  font-size: 0.84rem;
}

.news-bookmark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #9aa3a9;
}

.news-bookmark svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.news-more {
  margin-top: 28px;
}

.news-more[hidden] {
  display: none !important;
}

.news-page-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.news-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
  font-size: 0.98rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.news-view-all:hover {
  background: var(--teal);
  color: #fff;
}

@media (max-width: 1100px) {
  .news-board {
    grid-template-columns: 1fr;
  }

  .news-feature {
    min-height: 420px;
  }
}

@media (max-width: 800px) {
  .news-page-head {
    flex-direction: column;
    align-items: stretch;
  }

  .news-search {
    width: 100%;
  }

  .news-side-grid,
  .news-more-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-feature {
    min-height: 360px;
  }

  .news-feature-copy {
    padding: 20px 18px 18px;
  }

  .news-feature-copy p {
    display: none;
  }
}

@media (max-width: 560px) {
  .news-side-grid,
  .news-more-grid {
    grid-template-columns: 1fr;
  }

  .news-side-body h3 {
    min-height: 0;
  }
}

/* Events listing page */
.page-events {
  background: #fff;
  padding-bottom: 70px;
}

.events-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}

.event-list-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-list-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.event-list-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #eee;
  overflow: hidden;
}

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

.event-list-card h3 {
  margin: 0;
  padding: 18px 16px 20px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  min-height: 88px;
}

@media (max-width: 1100px) {
  .events-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .events-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 14px;
  }

  .event-list-card h3 {
    min-height: 0;
    font-size: 0.92rem;
    padding: 14px 12px 16px;
  }
}

@media (max-width: 520px) {
  .events-list-grid {
    grid-template-columns: 1fr;
  }
}

/* Press page */
.page-press {
  background: #fff;
  padding-bottom: 80px;
}

.press-head {
  padding: 8px 0 22px;
  max-width: 720px;
}

.press-page-title {
  margin: 0 0 12px;
}

.press-lead {
  margin: 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.65;
}

.press-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 28px;
}

.press-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: min(240px, 100%);
  height: 46px;
  padding: 0 40px 0 42px;
  border: 1px solid #d7dce0;
  border-radius: 8px;
  background: #fff;
  color: #333;
}

.press-select-ico,
.press-select-chevron {
  position: absolute;
  width: 18px;
  height: 18px;
  fill: #6a6a6a;
  pointer-events: none;
}

.press-select-ico {
  left: 14px;
}

.press-select-chevron {
  right: 12px;
}

.press-select select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.press-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(20, 30, 40, 0.04);
  overflow: hidden;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.press-card[hidden] {
  display: none !important;
}

.press-card:hover {
  transform: translateY(-2px);
  border-color: #d5dce0;
  box-shadow: 0 10px 22px rgba(20, 30, 40, 0.08);
}

.press-thumb {
  width: 100%;
  aspect-ratio: 409 / 260;
  object-fit: cover;
  object-position: center;
  background: #eee;
}

.press-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.press-logo {
  display: block;
  height: 26px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
}

.press-card h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  color: #151515;
}

.press-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #7a7a7a;
  font-size: 0.86rem;
  font-weight: 500;
}

.press-date svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.press-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.press-more-btn {
  min-width: 220px;
  height: 48px;
  padding: 0 28px;
  border: 1.5px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  color: var(--teal);
  font-size: 0.98rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.press-more-btn:hover,
.press-more-btn:focus-visible {
  background: var(--teal);
  color: #fff;
}

.press-more-btn[hidden] {
  display: none !important;
}

.press-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: #333;
  font-weight: 600;
}

.page-btn.is-active,
.page-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.press-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.84);
  display: grid;
  place-items: center;
  padding: 24px;
}

.press-lightbox[hidden] {
  display: none !important;
}

.press-lightbox img {
  max-width: min(960px, 100%);
  max-height: 88vh;
  object-fit: contain;
  background: #fff;
}

.press-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
}

@media (max-width: 640px) {
  .press-toolbar {
    flex-direction: column;
  }

  .press-select {
    min-width: 100%;
  }

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

/* About page */
.page-about {
  padding-bottom: 80px;
  background: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 0 8px;
  font-size: 0.88rem;
  color: #595959;
}

.breadcrumb a {
  color: #595959;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--teal-dark, #017a87);
}

.page-head {
  text-align: left;
  padding: 8px 0 22px;
}

/* Shared category page titles (Galeri, Hakkında, Basında, Haberler, İletişim) */
.page-title,
.gallery-title,
.press-page-title,
.news-page-title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 12px;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 2.8rem);
  font-weight: 700;
  color: #121212;
  line-height: 1.15;
  text-align: left;
  letter-spacing: 0;
}

.press-page-title {
  margin-bottom: 12px;
}

.page-title::after,
.gallery-title::after,
.press-page-title::after,
.news-page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: var(--teal);
  transform: none;
}

.about-hero {
  margin: 0 0 40px;
  overflow: hidden;
  border-radius: 6px;
  background: #eef2f4;
}

.about-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.about-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  grid-template-rows: auto 1fr;
  column-gap: 56px;
  row-gap: 18px;
  margin-bottom: 48px;
  align-items: stretch;
}

.about-bio-head {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  align-self: stretch;
  min-height: 38px;
  padding: 0 0 14px;
  border-bottom: 2px solid transparent;
}

.about-bio-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 42px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.about-bio {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}

.about-bio p {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  color: #3a3a3a;
  font-size: 1.02rem;
  line-height: 1.78;
}

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

.about-bio ul {
  margin: 0 0 8px;
  padding-left: 1.2em;
}

.about-roles-head {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 0 0 14px;
  border-bottom: 2px solid var(--teal);
}

.about-roles-panel {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
}

.about-roles-ico {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  flex-shrink: 0;
}

.about-roles-ico svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.about-roles-head h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
}

.about-roles-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 0;
}

.about-roles-list li {
  position: relative;
  padding: 11px 0 11px 16px;
  color: #333;
}

.about-roles-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.about-roles-list strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.35;
}

.about-roles-list span {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6a737a;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .about-columns {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 18px;
  }

  .about-bio-head { grid-column: 1; grid-row: 1; }
  .about-bio { grid-column: 1; grid-row: 2; }
  .about-roles-head { grid-column: 1; grid-row: 3; margin-top: 14px; }
  .about-roles-panel { grid-column: 1; grid-row: 4; }
}

@media (max-width: 640px) {
  .about-hero {
    margin-bottom: 28px;
  }

  .about-roles-list {
    grid-template-columns: 1fr;
  }
}

.page-article {
  padding: 8px 0 88px;
  background: #fff;
}
.page-article .container {
  width: min(820px, calc(100% - 40px));
}
.page-article .breadcrumb {
  padding: 22px 0 6px;
  color: #3d4f56;
  font-size: 0.9rem;
  flex-wrap: nowrap;
}
.page-article .breadcrumb span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-head {
  padding: 10px 0 6px;
}
.article-head .page-title {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.28;
  max-width: none;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 12px;
  color: #0f6b75;
  font-size: 0.92rem;
  font-weight: 600;
}
.article-meta time,
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-meta svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.article-lead {
  margin: 14px 0 0;
  color: #2a3338;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.55;
}
.article-cover {
  margin: 22px 0 14px;
}
.article-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
  border-radius: 14px;
  background: #eef2f4;
}
.article-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0 0 28px;
}
.article-share-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #3d4f56;
}
.article-share-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.article-share a,
.article-share button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #c5ced4;
  border-radius: 50%;
  background: #fff;
  color: #1f3a45;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.article-share a:hover,
.article-share button:hover {
  transform: translateY(-1px);
  color: #fff;
}
.article-share .is-wa:hover { background: #25d366; border-color: #25d366; }
.article-share .is-x:hover { background: #111; border-color: #111; }
.article-share .is-fb:hover { background: #1877f2; border-color: #1877f2; }
.article-share .is-in:hover { background: #0a66c2; border-color: #0a66c2; }
.article-share .is-tg:hover { background: #229ed9; border-color: #229ed9; }
.article-share .is-ns:hover { background: #1f6feb; border-color: #1f6feb; }
.article-share .is-ns img { width: 16px; height: 16px; display: block; }
.article-share .is-ns:hover img { filter: brightness(0) invert(1); }
.article-share .is-copy:hover { background: var(--teal); border-color: var(--teal); }
.article-share .is-copy.is-copied {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.article-share svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.article-body {
  max-width: none;
  color: #1a1a1a;
  font-size: 1.125rem;
  line-height: 1.75;
}
.article-body p,
.article-body li {
  color: #1a1a1a;
}
.article-body p { margin: 0 0 1.15em; }
.article-body strong { color: #111; }
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 8px 0 18px;
}
.article-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid #e8eef0;
}
.article-back {
  margin: 0;
}
.article-back a {
  color: #017a87;
  text-decoration: none;
  font-weight: 700;
}
.article-back a:hover { color: #015f69; }
.article-more {
  margin-top: 48px;
  padding-top: 8px;
}
.article-more h2 {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: #12343c;
}
.article-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.article-more-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 18px rgba(20, 40, 48, 0.05);
}
.article-more-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  background: #eef2f4;
}
.article-more-card h3 {
  margin: 0;
  padding: 12px 14px 14px;
  font-size: 0.95rem;
  line-height: 1.35;
}
.article-more-card:hover { transform: translateY(-2px); }
@media (max-width: 720px) {
  .article-more-grid { grid-template-columns: 1fr; }
  .page-article .breadcrumb { flex-wrap: wrap; }
  .article-cover img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: left top;
  }
  .article-more-card img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: left top;
  }
}
