:root {
  --green-950: #082316;
  --green-900: #0e3422;
  --green-800: #154a2e;
  --green-700: #1d633c;
  --green-600: #278248;
  --green-100: #e9f5ed;
  --ink: #17211b;
  --muted: #647067;
  --line: #dfe7e2;
  --surface: #ffffff;
  --soft: #f6f8f5;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(18, 47, 31, 0.12);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 0;
  background: transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  padding: 6px 12px 6px 6px;
  background: transparent;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.38);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.15;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--green-700);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-800);
  font-size: 14px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 999px;
  margin-left: auto;
  padding: 10px 12px 10px 18px;
  background: rgba(8, 35, 22, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

body.nav-expanded .site-nav {
  animation: navExpandIn 0.32s ease both;
}

@media (min-width: 901px) {
  body.nav-condensed .site-nav {
    position: fixed;
    top: 18px;
    right: clamp(18px, 5vw, 72px);
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 210px;
    gap: 0;
    border-radius: 18px;
    padding: 10px;
    background: rgba(8, 35, 22, 0.88);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
    backdrop-filter: none;
    will-change: transform, opacity;
    animation: navCondenseIn 0.28s ease both;
  }

  body.nav-condensed .site-nav > a,
  body.nav-condensed .nav-parent {
    justify-content: flex-start;
    border-radius: 10px;
    padding: 10px 12px;
    opacity: 0;
    transform: translateY(-8px);
    animation: navItemDrop 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  body.nav-condensed .site-nav > a:nth-child(1) {
    animation-delay: 0.03s;
  }

  body.nav-condensed .site-nav > .nav-dropdown {
    display: grid;
    opacity: 0;
    transform: translateY(-8px);
    animation: navItemDrop 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
  }

  body.nav-condensed .site-nav > a:nth-child(3) {
    animation-delay: 0.09s;
  }

  body.nav-condensed .site-nav > a:nth-child(4) {
    animation-delay: 0.12s;
  }

  body.nav-condensed .site-nav > a:nth-child(5) {
    animation-delay: 0.15s;
  }

  body.nav-condensed .site-nav > a:nth-child(6) {
    animation-delay: 0.18s;
  }

  body.nav-condensed .site-nav > a:nth-child(7) {
    animation-delay: 0.21s;
  }

  body.nav-condensed .site-nav .button {
    order: -1;
    width: 100%;
    margin-bottom: 8px;
    opacity: 1;
    transform: none;
    animation: none;
  }

  body.nav-condensed .site-nav::after {
    display: grid;
    place-items: center;
    min-height: 24px;
    color: rgba(255, 255, 255, 0.86);
    content: "⌄";
    font-size: 18px;
    line-height: 1;
    transition: transform 0.32s ease;
  }

  body.nav-condensed .site-nav:hover::after,
  body.nav-condensed .site-nav:focus-within::after {
    transform: rotate(180deg);
  }

  body.nav-condensed .site-nav:not(:hover):not(:focus-within) > a:not(.button),
  body.nav-condensed .site-nav:not(:hover):not(:focus-within) > .nav-dropdown {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    animation: none;
  }

  body.nav-condensed .site-nav:not(:hover):not(:focus-within) > .nav-dropdown .nav-parent {
    padding-top: 0;
    padding-bottom: 0;
  }

  body.nav-condensed .dropdown-menu {
    top: 0;
    left: auto;
    right: calc(100% + 12px);
    transform: translate(8px, 0);
  }

  body.nav-condensed .nav-dropdown:hover .dropdown-menu,
  body.nav-condensed .nav-dropdown:focus-within .dropdown-menu {
    transform: translate(0, 0);
  }
}

@keyframes navCondenseIn {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes navItemDrop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navExpandIn {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes navHandleBounce {
  0% {
    transform: translateY(0) scale(1);
  }

  5% {
    transform: translateY(-14px) scale(1.03, 0.97);
  }

  12% {
    transform: translateY(0) scale(1.08, 0.9);
  }

  17% {
    transform: translateY(-7px) scale(0.98, 1.02);
  }

  22% {
    transform: translateY(0) scale(1.04, 0.94);
  }

  28%,
  100% {
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.nav-condensed .site-nav,
  body.nav-condensed .site-nav::before,
  body.nav-condensed .site-nav > a,
  body.nav-condensed .site-nav > .nav-dropdown,
  body.nav-expanded .site-nav,
  .team-photo {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-nav a:not(.button):hover,
.nav-dropdown:hover .nav-parent,
.nav-dropdown:focus-within .nav-parent {
  color: #d8f3df;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-parent::after {
  content: "▾";
  color: currentColor;
  font-size: 11px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 230px;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(16, 70, 42, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(8, 35, 22, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.dropdown-menu::before {
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  content: "";
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  font-weight: 800;
  text-shadow: none;
  white-space: nowrap;
}

.site-nav .dropdown-menu a:hover,
.site-nav .dropdown-menu a:focus-visible {
  background: rgba(30, 126, 69, 0.12);
  color: var(--green-800);
  outline: none;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 26px;
}

.nav-socials {
  display: none;
}

@media (min-width: 901px) {
  body.nav-condensed .site-nav {
    top: 116px;
    right: 34px;
    width: 318px;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 22px;
    padding: 14px 16px 18px;
    background:
      linear-gradient(160deg, rgba(12, 74, 43, 0.86), rgba(3, 32, 17, 0.92)),
      url("/assets/hero-guneysu.png") center/cover;
    background-blend-mode: multiply;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      0 28px 70px rgba(0, 0, 0, 0.28);
    text-shadow: none;
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    transform: translateX(calc(100% + 42px));
    transition: none;
    animation: none;
  }

  body.nav-condensed.nav-sidebar-ready .site-nav {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }

  body.nav-condensed.nav-sidebar-open .site-nav {
    transform: translateX(0);
  }

  body.nav-condensed .site-nav::before {
    position: absolute;
    top: 62px;
    left: -66px;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: rgba(13, 65, 39, 0.78);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 16px 32px rgba(0, 0, 0, 0.24);
    color: #fff;
    content: "‹";
    box-sizing: border-box;
    padding-bottom: 2px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 0.72;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: navHandleBounce 2.75s ease-in-out 3 0.7s;
    transition: transform 0.22s ease, background 0.22s ease;
  }

  body.nav-condensed.nav-sidebar-open .site-nav::before {
    background: rgba(25, 96, 57, 0.86);
    animation: none;
    transform: rotate(180deg);
  }

  body.nav-condensed.nav-handle-seen .site-nav::before {
    animation: none;
  }

  @media (prefers-reduced-motion: reduce) {
    body.nav-condensed .site-nav::before {
      animation: none;
    }
  }

  body.nav-condensed .site-nav::after {
    display: none;
  }

  body.nav-condensed .site-nav:not(:hover):not(:focus-within) > a:not(.button),
  body.nav-condensed .site-nav:not(:hover):not(:focus-within) > .nav-dropdown {
    max-height: none;
    overflow: visible;
    padding-top: 12px;
    padding-bottom: 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  body.nav-condensed .site-nav:not(:hover):not(:focus-within) > .nav-dropdown .nav-parent {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  body.nav-condensed .site-nav > a,
  body.nav-condensed .site-nav .nav-parent {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 42px;
    border-radius: 12px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 800;
    opacity: 1;
    transform: none;
    animation: none;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
  }

  body.nav-condensed .site-nav > a:not(.button):hover,
  body.nav-condensed .nav-dropdown:hover .nav-parent,
  body.nav-condensed .nav-dropdown:focus-within .nav-parent {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    transform: translateX(2px);
  }

  body.nav-condensed .site-nav > a::before,
  body.nav-condensed .nav-parent::before {
    display: grid;
    place-items: center;
    width: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
  }

  body.nav-condensed .site-nav > a:nth-child(1)::before {
    content: "⌂";
  }

  body.nav-condensed .nav-parent::before {
    content: "☷";
  }

  body.nav-condensed .site-nav > a:nth-of-type(2)::before {
    content: "♧";
    color: #47c978;
  }

  body.nav-condensed .site-nav > a:nth-of-type(3)::before {
    content: "▤";
  }

  body.nav-condensed .site-nav > a:nth-of-type(4)::before {
    content: "▧";
  }

  body.nav-condensed .site-nav > a:nth-of-type(5)::before {
    content: "☷";
  }

  body.nav-condensed .site-nav > a:nth-of-type(6)::before {
    content: "☏";
  }

  body.nav-condensed .nav-parent::after,
  body.nav-condensed .site-nav > a:not(.button)::after {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.92);
    content: "›";
    font-size: 27px;
    line-height: 1;
  }

  body.nav-condensed .nav-dropdown {
    display: grid;
    opacity: 1;
    transform: none;
    animation: none;
  }

  body.nav-condensed .dropdown-menu {
    top: 0;
    right: calc(100% + 12px);
    left: auto;
    border-color: rgba(16, 70, 42, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 45px rgba(8, 35, 22, 0.24);
    transform: translate(8px, 0);
    backdrop-filter: blur(12px);
  }

  body.nav-condensed .nav-dropdown:hover .dropdown-menu,
  body.nav-condensed .nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, 0);
  }

  body.nav-condensed .dropdown-menu a {
    color: var(--ink);
    text-shadow: none;
  }

  body.nav-condensed .dropdown-menu a:hover,
  body.nav-condensed .dropdown-menu a:focus-visible {
    background: rgba(30, 126, 69, 0.12);
    color: var(--green-800);
    outline: none;
  }

  body.nav-condensed .site-nav .button {
    order: -1;
    justify-content: flex-start;
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 12px;
    margin: 0 0 12px;
    padding: 0 16px;
    background: linear-gradient(135deg, #2ea95d, #23834a);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 16px;
  }

  body.nav-condensed .site-nav .button::before {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
    content: "♙";
    font-size: 20px;
  }

  body.nav-condensed .nav-socials {
    display: flex;
    justify-content: center;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 12px;
    padding-top: 16px;
  }

  body.nav-condensed .nav-socials a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 17px;
    font-weight: 900;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--green-600);
  border-radius: 8px;
  background: var(--green-600);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(39, 130, 72, 0.22);
}

.button-small {
  min-height: 34px;
  padding: 0 13px;
  font-size: 13px;
}

.button-ghost,
.button-muted {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.18);
}

.button-muted {
  border-color: var(--line);
  background: #eef3ef;
  color: var(--green-900);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 46%) 1fr;
  min-height: 520px;
  padding: 78px 0 34px clamp(24px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 74%, rgba(39, 130, 72, 0.08) 0 16%, transparent 17%),
    linear-gradient(90deg, #ffffff 0 45%, #f3f6f1 45% 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse at 13% 2%, rgba(8, 35, 22, 0.34) 0, rgba(8, 35, 22, 0.16) 24%, transparent 48%),
    radial-gradient(circle at 2% 82%, rgba(39, 130, 72, 0.09) 0 2px, transparent 3px),
    radial-gradient(circle at 40% 63%, rgba(39, 130, 72, 0.07) 0 2px, transparent 3px);
  background-size: auto, 42px 42px, 56px 56px;
  mask-image: linear-gradient(90deg, #000 0 45%, transparent 66%);
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(560px, 100%);
  color: var(--ink);
}

.hero-content h1,
.hero-content p,
.hero-actions {
  opacity: 0;
  animation: heroContentReveal 0.8s ease forwards;
}

.hero-content p {
  animation-delay: 0.14s;
}

.hero-actions {
  animation-delay: 0.28s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  margin: 0 0 12px;
  padding: 7px 16px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 14px;
  font-weight: 900;
}

.hero-badge::before {
  margin-right: 8px;
  content: "✓";
  font-size: 14px;
}

.hero h1 {
  max-width: 460px;
  margin: 0 0 14px;
  color: #102522;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.brand-logo {
  padding: 4px;
  object-fit: contain;
}

.hero h1 span {
  display: block;
  color: var(--green-700);
}

.hero p {
  max-width: 500px;
  margin: 0 0 18px;
  color: #36443d;
  font-size: 17px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .button {
  min-height: 48px;
  border-radius: 11px;
  padding: 0 22px;
}

.hero-actions .button-ghost {
  border-color: var(--green-700);
  background: #fff;
  color: var(--green-950);
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 67%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M21 0C12 8 18 18 14 27C10 36 22 44 16 54C10 64 19 73 15 83C12 91 18 97 24 100H100V0Z'/%3E%3C/svg%3E") left center / 100% 100% no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M21 0C12 8 18 18 14 27C10 36 22 44 16 54C10 64 19 73 15 83C12 91 18 97 24 100H100V0Z'/%3E%3C/svg%3E") left center / 100% 100% no-repeat;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 35, 22, 0.1), rgba(8, 35, 22, 0.08));
  content: "";
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  opacity: 0;
}

.hero-slide-primary {
  opacity: 1;
  animation:
    heroFirstSlideFade 12s ease-in-out infinite,
    heroImageDrift 16s ease-in-out infinite alternate;
}

.hero-slide-secondary {
  animation:
    heroSecondSlideFade 12s ease-in-out infinite,
    heroImageDrift 16s ease-in-out infinite alternate;
}

.hero-video-card {
  position: absolute;
  right: clamp(24px, 5vw, 68px);
  bottom: 28px;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 48px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  color: #fff;
  padding: 8px 12px 8px 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero-play {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-800);
  font-size: 12px;
}

.hero-video-card strong {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-18px, -10px, 0);
  }
}

@keyframes heroFirstSlideFade {
  0%,
  42% {
    opacity: 1;
  }

  50%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes heroSecondSlideFade {
  0%,
  42% {
    opacity: 0;
  }

  50%,
  92% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes heroContentReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual img,
  .hero-content h1,
  .hero-content p,
  .hero-actions {
    animation: none;
    opacity: 1;
  }

  .hero-slide-secondary {
    opacity: 0;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.58s ease, transform 0.58s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.feature-grid,
.section,
.form-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.feature-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1320px, calc(100% - 48px));
  overflow: hidden;
  border: 1px solid rgba(228, 235, 231, 0.76);
  border-radius: 18px;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(18, 47, 31, 0.09);
}

.feature,
.about-card,
.member-form,
.admin-panel,
.activity-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 24px 28px 26px;
  box-shadow: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature + .feature {
  border-left: 1px solid rgba(225, 232, 228, 0.95);
}

.feature::after {
  display: none;
}

.feature:hover {
  background: rgba(249, 252, 250, 0.82);
  box-shadow: none;
  transform: none;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 13px;
  background: #edf6f0;
  color: var(--green-700);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.feature-stat {
  display: block;
  color: var(--green-700);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.feature h2,
.activity-grid h3,
.about-card h3 {
  margin: 5px 0 8px;
  font-size: 15px;
}

.feature p,
.activity-grid p,
.about-card p {
  margin: 0;
  color: var(--muted);
}

.feature p {
  font-size: 13px;
  line-height: 1.35;
}

.section {
  padding: 76px 0;
}

#hakkimizda {
  scroll-margin-top: -92px;
  padding-top: 58px;
}

.muted {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section h2,
.form-section h2,
.admin-panel h1 {
  margin: 0 0 20px;
  color: var(--green-950);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.18;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.about-copy {
  max-width: 570px;
}

.about-copy .section-kicker {
  position: relative;
  width: fit-content;
  margin-bottom: 26px;
}

.about-copy .section-kicker::after {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-700);
  content: "";
}

.about-copy h2 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(38px, 4.7vw, 58px);
  line-height: 1.15;
}

.about-copy h2 span {
  color: var(--green-700);
}

.about-copy p {
  max-width: 540px;
  color: #52625a;
  font-size: 15px;
  line-height: 1.85;
}

.about-copy p + p {
  margin-top: 14px;
}

.about-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  perspective: 1000px;
}

.about-feature-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 228px;
  border: 1px solid rgba(230, 237, 233, 0.76);
  border-radius: 12px;
  background: var(--green-950);
  color: #fff;
  box-shadow: 0 20px 46px rgba(18, 47, 31, 0.14);
  transform: rotate(0) translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-feature-card:hover,
.about-feature-card:focus-visible {
  border-color: rgba(39, 130, 72, 0.58);
  box-shadow: 0 28px 60px rgba(18, 47, 31, 0.2);
  outline: 0;
  transform: rotate(1.8deg) translateY(-6px);
}

.about-feature-card.board-card:hover,
.about-feature-card.board-card:focus-visible {
  transform: rotate(-1.6deg) translateY(-6px);
}

.about-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.32s ease;
}

.about-feature-card:hover img,
.about-feature-card:focus-visible img {
  transform: scale(1.07);
}

.about-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 69, 42, 0.92) 0, rgba(10, 69, 42, 0.72) 44%, rgba(10, 69, 42, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.12));
}

.board-card .about-card-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0.84) 48%, rgba(255, 255, 255, 0.14) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(8, 35, 22, 0.12));
}

.about-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(360px, 72%);
  min-height: 228px;
  padding: 28px 36px;
}

.about-card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(10px);
}

.about-card-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.about-feature-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.about-feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.7;
}

.board-card {
  min-height: 188px;
  color: var(--green-950);
}

.board-card .about-card-content {
  min-height: 188px;
}

.board-card .about-card-icon {
  background: var(--green-100);
  color: var(--green-700);
}

.board-card h3 {
  color: var(--green-950);
}

.board-card p {
  color: #52625a;
}

.about-card-mark {
  position: absolute;
  top: 48px;
  right: 34px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(8, 35, 22, 0.78);
  color: #d7f0df;
  font-size: 22px;
  font-weight: 900;
}

.about-card-arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-800);
  font-size: 0;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(18, 47, 31, 0.18);
}

.about-card-arrow::before {
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
  transform: translate(-2px, 5px) rotate(45deg);
}

.about-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 24px;
}

.nav-card {
  align-items: center;
  justify-content: space-between;
  min-height: 300px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.nav-card:hover {
  border-color: var(--green-600);
  box-shadow: 0 22px 55px rgba(18, 47, 31, 0.16);
  transform: translateY(-4px);
}

.nav-card h3 {
  color: #139b9b;
  font-size: 30px;
}

.card-illustration {
  position: relative;
  width: 170px;
  height: 132px;
  margin: 6px auto;
}

.illustration-card {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 86px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background:
    radial-gradient(circle at 30px 40px, #16a3a3 0 11px, transparent 12px),
    linear-gradient(135deg, transparent 0 38%, #d9d9d9 39% 62%, transparent 63%),
    #f7f7f7;
}

.illustration-badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #1c2c68;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  transform: translateX(-50%);
}

.illustration-line {
  position: absolute;
  z-index: 2;
  right: 28px;
  height: 7px;
  border-radius: 999px;
  background: #20c7bf;
}

.line-one {
  top: 62px;
  width: 60px;
}

.line-two {
  top: 82px;
  width: 78px;
}

.detail-link {
  color: #139b9b;
  font-weight: 900;
}

.message-illustration .illustration-card {
  background:
    linear-gradient(135deg, transparent 0 46%, #e3f3ef 47% 70%, transparent 71%),
    #f7f7f7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(230px, 318px));
  justify-content: center;
  gap: 82px 24px;
  margin-top: 86px;
}

.team-grid .team-card:first-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 340px);
}

.team-card,
.president-message {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  min-height: 326px;
  padding: 78px 24px 24px;
  text-align: center;
}

.team-card::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: var(--green-600);
  content: "";
  transform: scaleX(0.72);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.team-card-clickable {
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.team-card-clickable:hover,
.team-card-clickable:focus-visible {
  border-color: var(--green-600);
  box-shadow: 0 22px 55px rgba(18, 47, 31, 0.16);
  outline: 0;
  transform: translateY(-5px);
}

.team-card-clickable:hover::after,
.team-card-clickable:focus-visible::after {
  transform: scaleX(1);
}

.team-photo-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 124px;
  margin: 0;
  transform: translate(-50%, -50%);
}

.team-photo,
.admin-team-avatar {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: #fff;
  font-weight: 900;
}

.team-photo {
  width: 124px;
  height: 124px;
  border: 5px solid #fff;
  outline: 1px solid #c9dfcf;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(18, 47, 31, 0.16);
  font-size: 26px;
  transition: border-radius 0.26s ease, transform 0.26s ease, box-shadow 0.26s ease;
}

.team-card-clickable:hover .team-photo,
.team-card-clickable:focus-visible .team-photo {
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(18, 47, 31, 0.2);
  transform: scale(1.03);
}

.team-card h3 {
  margin: 0 0 6px;
  color: var(--green-950);
  font-size: 22px;
  line-height: 1.2;
}

.team-card p {
  color: var(--muted);
}

.team-card .person-role {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--green-700) !important;
  font-size: 13px;
}

.team-card-summary {
  display: -webkit-box;
  min-height: 62px;
  margin: 0 auto 10px;
  max-width: 240px;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  margin: 2px 0 14px;
}

.team-card-summary + .detail-link {
  margin-top: auto;
}

.team-social-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 900;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.team-social-link:hover {
  border-color: var(--green-600);
  background: var(--green-600);
  color: #fff;
  transform: translateY(-2px);
}

.team-social-link.ig span {
  display: none;
}

.team-social-link.ig::before {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 6px;
  content: "";
}

.team-social-link.ig::after {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.team-social-link.in {
  color: #0a66c2;
}

.team-social-link.in:hover {
  border-color: #0a66c2;
  background: #0a66c2;
  color: #fff;
}

.team-card .detail-link {
  display: inline-block;
  border: 1px solid var(--green-600);
  border-radius: 8px;
  margin-top: auto;
  padding: 8px 18px;
  color: var(--green-700);
  font-size: 13px;
  transition: background 0.16s ease, color 0.16s ease;
}

.team-card .detail-link:hover {
  background: var(--green-600);
  color: #fff;
}

.message-page {
  width: min(920px, calc(100% - 40px));
}

.president-message {
  padding: clamp(26px, 5vw, 52px);
}

.president-message h2 {
  margin-bottom: 22px;
}

.president-message p {
  color: var(--muted);
  font-size: 17px;
}

.team-form,
.news-form,
.event-form {
  display: grid;
  gap: 18px;
}

.admin-team-list,
.admin-news-list,
.admin-event-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.admin-team-card,
.admin-news-card {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.admin-team-card > div,
.admin-news-card > div,
.admin-event-content {
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-team-card img,
.admin-news-card img,
.admin-team-avatar {
  width: 74px;
  height: 74px;
  object-fit: cover;
}

.admin-team-card h3,
.admin-news-card h3 {
  margin: 0 0 4px;
  color: var(--green-950);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.admin-team-card p,
.admin-news-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.admin-news-count {
  margin-top: 6px !important;
  color: var(--green-700) !important;
  font-size: 13px;
  font-weight: 800;
}

.admin-card-actions {
  display: grid;
  gap: 8px;
}

.drag-handle {
  display: block;
  border: 1px dashed var(--green-600);
  border-radius: 7px;
  background: var(--green-50);
  color: var(--green-900);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.drag-handle:active {
  cursor: grabbing;
}

[data-sort-id].is-dragging {
  opacity: 0.45;
  outline: 2px dashed var(--green-600);
  outline-offset: 3px;
}

.admin-card-actions button,
.admin-team-card button,
.admin-news-card button {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--green-900);
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.admin-card-actions button:last-child,
.admin-team-card button[data-delete-team],
.admin-news-card button[data-delete-news] {
  color: var(--danger);
}

.card-kicker {
  margin: 0;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.person-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 2px 0;
}

.person-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid var(--green-100);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: #fff;
  font-weight: 900;
}

.person-row h4 {
  margin: 0 0 2px;
  color: var(--green-950);
  font-size: 16px;
}

.person-role {
  color: var(--green-700) !important;
  font-size: 13px;
  font-weight: 800;
}

.message-card {
  background: linear-gradient(135deg, #ffffff, var(--green-100));
}

.signature {
  margin-top: auto !important;
  color: var(--green-900) !important;
  font-weight: 900;
}

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

.activity-grid article {
  padding: 24px;
  box-shadow: none;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-title-row > div > p:last-child {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-more-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  border: 1px solid var(--green-700);
  border-radius: 999px;
  padding: 0 22px;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.section-more-link:hover {
  background: var(--green-700);
  color: #fff;
  transform: translateY(-2px);
}

.news-section {
  width: min(1320px, calc(100% - 48px));
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(360px, 0.88fr);
  grid-auto-rows: 1fr;
  gap: 18px 22px;
  margin-top: 26px;
}

.news-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(18, 47, 31, 0.09);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-card:hover,
.news-card:focus-visible {
  border-color: var(--green-600);
  box-shadow: 0 24px 58px rgba(18, 47, 31, 0.16);
  outline: none;
  transform: translateY(-6px);
}

.news-card-featured {
  grid-row: span 3;
  min-height: 558px;
  border-color: transparent;
  background: var(--green-950);
  color: #fff;
}

.news-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--green-100);
}

.news-card-featured .news-image {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

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

.news-card-featured .news-image::after,
.news-card-compact .news-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 35, 19, 0.76) 0, rgba(4, 35, 19, 0.48) 34%, rgba(4, 35, 19, 0.02) 100%),
    linear-gradient(180deg, rgba(4, 20, 12, 0.02), rgba(4, 20, 12, 0.18));
  content: "";
}

.news-image span {
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-800);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.news-card-featured .news-image span {
  left: 28px;
  top: 34px;
  bottom: auto;
  z-index: 2;
  background: rgba(39, 130, 72, 0.92);
  color: #fff;
  letter-spacing: 0.02em;
}

.news-content {
  display: grid;
  gap: 9px;
  padding: 20px;
}

.news-card-featured .news-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  left: 30px;
  right: min(42%, 360px);
  top: 128px;
  bottom: 32px;
  z-index: 2;
  gap: 13px;
  padding: 0;
}

.news-date-line {
  position: absolute;
  left: 28px;
  top: 82px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(4, 35, 19, 0.58);
  color: #fff;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}


.news-content time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.news-card-featured .news-content time {
  display: none;
}

.news-content h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 22px;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.news-card-featured .news-content h3 {
  color: #fff;
  font-size: clamp(30px, 2.7vw, 38px);
  line-height: 1.12;
  letter-spacing: 0;
}

.news-content p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.news-card-featured .news-content p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.news-content .detail-link {
  width: fit-content;
  margin-top: 8px;
  color: var(--green-700);
  font-weight: 900;
}

.news-card-featured .news-content .detail-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  border-radius: 999px;
  margin-top: auto;
  background: #fff;
  color: var(--green-800);
  padding: 0 20px;
}

.news-card-featured .news-content .detail-link::after {
  content: "→";
}

.news-card-compact {
  min-height: 170px;
  border-color: transparent;
  background: var(--green-950);
  color: #fff;
}

.news-card-compact .news-image {
  position: absolute;
  inset: 0;
  height: auto;
  aspect-ratio: auto;
}

.news-card-compact .news-image span {
  left: 14px;
  top: 22px;
  z-index: 2;
  border-radius: 999px;
  background: var(--green-700);
  color: #fff;
}

.news-card-compact .news-content {
  position: absolute;
  left: 18px;
  right: 24px;
  bottom: 18px;
  z-index: 2;
  min-height: 0;
  padding: 0;
}

.news-card-compact .news-content time {
  color: rgba(255, 255, 255, 0.86);
}

.news-card-compact .news-content h3 {
  display: -webkit-box;
  color: #fff;
  font-size: 21px;
  line-height: 1.14;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-card-compact .news-content .detail-link {
  display: none;
}

.news-archive-section {
  padding-top: 70px;
}

.news-archive-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 280px));
  grid-auto-rows: auto;
  justify-content: center;
  gap: 16px;
}

.news-card-archive {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(18, 47, 31, 0.08);
}

.news-card-archive .news-image {
  aspect-ratio: 16 / 9;
}

.news-card-archive .news-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 20, 12, 0), rgba(4, 20, 12, 0.22));
  content: "";
}

.news-card-archive .news-content {
  align-content: start;
  gap: 7px;
  padding: 14px;
}

.news-card-archive .news-content time {
  font-size: 12px;
}

.news-card-archive .news-content h3 {
  display: -webkit-box;
  font-size: 18px;
  line-height: 1.25;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-card-archive .news-content p {
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.45;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-card-archive .news-content .detail-link {
  margin-top: 2px;
  font-size: 13px;
}

.news-card-archive .news-image span {
  left: 12px;
  top: 12px;
  padding: 6px 9px;
  font-size: 11px;
}

.news-content .detail-link:hover {
  color: var(--green-950);
}

.gallery-section {
  position: relative;
  overflow: hidden;
}

.gallery-heading {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.gallery-heading h2 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.gallery-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.gallery-shell {
  position: relative;
  width: min(1320px, calc(100% - 48px));
  margin: 28px auto 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
}

.gallery-stage {
  position: relative;
  grid-template-columns: minmax(180px, 0.78fr) minmax(360px, 1.34fr) minmax(180px, 0.78fr);
  align-items: center;
  place-items: center;
  column-gap: 12px;
  min-height: 560px;
  overflow: visible;
  padding: 26px 74px 34px;
  isolation: isolate;
}

.gallery-stage > * {
  display: none;
}

.gallery-stage > .is-prev,
.gallery-stage > .is-active,
.gallery-stage > .is-next {
  display: block;
}

.gallery-stage > .is-prev {
  grid-row: 1;
  grid-column: 1;
  z-index: 1;
  transform: scale(0.82);
}

.gallery-stage > .is-active {
  grid-row: 1;
  grid-column: 2;
  z-index: 3;
  transform: scale(1);
}

.gallery-stage > .is-next {
  grid-row: 1;
  grid-column: 3;
  z-index: 1;
  transform: scale(0.82);
}

.gallery-stage > .is-prev,
.gallery-stage > .is-next {
  opacity: 0.88;
  filter: saturate(0.92);
}

.gallery-stage > .is-hidden {
  display: none;
}

.gallery-stage > * {
  transition: transform 0.34s ease, opacity 0.34s ease, filter 0.34s ease, box-shadow 0.34s ease;
}

.gallery-stage > .is-active.event-card,
.gallery-stage > .is-active:is(img) {
  box-shadow: 0 34px 90px rgba(18, 47, 31, 0.22);
}

.gallery-stage > .is-active .event-card-image,
.gallery-stage > .is-active:is(img) {
  aspect-ratio: 4 / 5;
}

.gallery-stage > .is-prev .event-card-content,
.gallery-stage > .is-next .event-card-content {
  visibility: visible;
}

.gallery-stage > .is-prev .event-card-image,
.gallery-stage > .is-next .event-card-image,
.gallery-stage > .is-prev:is(img),
.gallery-stage > .is-next:is(img) {
  aspect-ratio: 3 / 5;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  object-fit: cover;
}

.gallery-stage > img {
  object-fit: contain;
  background: rgba(234, 244, 238, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.event-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--green-950);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.event-card:hover,
.event-card:focus-visible {
  border-color: var(--green-600);
  box-shadow: 0 24px 58px rgba(18, 47, 31, 0.16);
  outline: none;
  transform: translateY(-6px);
}

.gallery-stage > .event-card:hover,
.gallery-stage > .event-card:focus-visible {
  transform: translateY(-4px);
}

.gallery-stage > .is-prev.event-card:hover,
.gallery-stage > .is-prev.event-card:focus-visible {
  transform: translateY(-4px) scale(0.84);
}

.gallery-stage > .is-active.event-card:hover,
.gallery-stage > .is-active.event-card:focus-visible {
  transform: translateY(-4px) scale(1.01);
}

.gallery-stage > .is-next.event-card:hover,
.gallery-stage > .is-next.event-card:focus-visible {
  transform: translateY(-4px) scale(0.84);
}

.event-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--green-100);
}

.gallery-stage .event-card-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 20, 12, 0.02) 28%, rgba(4, 20, 12, 0.72) 100%),
    linear-gradient(90deg, rgba(4, 20, 12, 0.16), rgba(4, 20, 12, 0));
  content: "";
}

.event-card-image img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.gallery-stage .event-card-image img,
.gallery-archive-grid .event-card-image img {
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.gallery-stage .event-card-image .event-card-image-backdrop,
.gallery-archive-grid .event-card-image .event-card-image-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  filter: blur(22px) saturate(1.18);
  opacity: 0.58;
  object-fit: cover;
  transform: scale(1.14);
}

.event-card:hover .event-card-image img {
  transform: scale(1.04);
}

.event-card-image span {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-800);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.event-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 22px;
  color: #fff;
}

.event-card-content time {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.event-card-content h3 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.event-card-content p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gallery-stage .event-card-content .detail-link {
  position: absolute;
  right: 20px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  font-size: 0;
  line-height: 1;
}

.gallery-stage .event-card-content .detail-link::before {
  width: 9px;
  height: 9px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
  transform: translate(-2px, 7px) rotate(45deg);
}

.gallery-stage > .is-prev .event-card-content,
.gallery-stage > .is-next .event-card-content {
  padding: 18px;
}

.gallery-stage > .is-prev .event-card-content h3,
.gallery-stage > .is-next .event-card-content h3 {
  font-size: 18px;
}

.gallery-stage > .is-prev .event-card-content p,
.gallery-stage > .is-next .event-card-content p {
  display: none;
}

.gallery-stage > .is-prev .event-card-content .detail-link,
.gallery-stage > .is-next .event-card-content .detail-link {
  width: 34px;
  height: 34px;
  right: 14px;
  bottom: 18px;
  background: rgba(4, 20, 12, 0.34);
}

.gallery-nav-button {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 16px 36px rgba(18, 47, 31, 0.2);
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.18s ease, background 0.18s ease;
}

.gallery-stage > .is-prev .event-card-content .detail-link::before,
.gallery-stage > .is-next .event-card-content .detail-link::before {
  width: 7px;
  height: 7px;
  border-width: 2px;
  transform: translate(-1px, 6px) rotate(45deg);
}

.gallery-nav-button::before {
  width: 11px;
  height: 11px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  content: "";
}

.gallery-nav-prev::before {
  transform: translate(2px, 5px) rotate(-135deg);
}

.gallery-nav-next::before {
  transform: translate(-2px, 5px) rotate(45deg);
}

.gallery-nav-button:hover,
.gallery-nav-button:focus-visible {
  background: var(--green-700);
  outline: none;
  transform: translateY(-50%) scale(1.05);
}

.gallery-nav-prev {
  left: 4px;
}

.gallery-nav-next {
  right: 4px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  min-height: 12px;
  margin: -12px 0 26px;
}

.gallery-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: #d3ddd6;
  cursor: pointer;
  padding: 0;
}

.gallery-dots button.is-active {
  background: var(--green-600);
}

.gallery-all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  border: 1px solid #b8dcc3;
  border-radius: 999px;
  margin: 0 auto 56px;
  padding: 0 24px;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 900;
}

.gallery-archive-section {
  width: min(1320px, calc(100% - 48px));
}

.gallery-archive-section .gallery-heading {
  width: 100%;
}

.gallery-archive-grid {
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.gallery-archive-grid .event-card {
  position: relative;
  min-height: 360px;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.gallery-archive-grid .event-card-image {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(235, 247, 240, 0.18)),
    rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.gallery-archive-grid .event-card-image img:not(.event-card-image-backdrop) {
  object-fit: contain;
}

.gallery-archive-grid .event-card-image .event-card-image-backdrop {
  opacity: 0.72;
}

.gallery-archive-grid .event-card-content h3 {
  font-size: 22px;
}

.gallery-archive-grid .event-card-content p {
  max-width: calc(100% - 58px);
}

.gallery-archive-grid .event-card-content {
  min-height: 150px;
  padding: 22px;
}

.gallery-archive-grid .event-card-content .detail-link {
  position: absolute;
  right: 20px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-archive-grid .event-card-content .detail-link::before {
  width: 8px;
  height: 8px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
  transform: translate(-2px, 7px) rotate(45deg);
}

.gallery-archive-grid .event-card-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 28%, rgba(8, 35, 22, 0.62) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.video-shell {
  scroll-margin-top: 96px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.video-shell iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.page-hero {
  display: grid;
  min-height: 220px;
  align-items: center;
  padding: 112px clamp(24px, 8vw, 92px) 46px;
  background: linear-gradient(rgba(8, 35, 22, 0.86), rgba(8, 35, 22, 0.78)), url("/assets/hero-guneysu.png") center/cover;
  color: #fff;
  text-align: left;
}

.page-hero-content {
  width: min(760px, 100%);
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.12;
}

.page-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.team-section {
  position: relative;
}

.team-section-heading {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.team-section-heading .section-kicker {
  margin-bottom: 10px;
}

.team-section-heading h2 {
  margin-bottom: 14px;
}

.team-section-heading > p:last-child {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.team-note {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: center;
  width: min(840px, 100%);
  margin: 54px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fbf8, #eef6f1);
  padding: 26px 30px;
}

.team-note-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 900;
}

.team-note h3 {
  margin: 0 0 5px;
  color: var(--green-950);
  font-size: 20px;
}

.team-note p {
  margin: 0;
  color: var(--muted);
}

.form-section {
  padding: 130px 0 84px;
}

.member-form {
  padding: clamp(22px, 4vw, 38px);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-size: 14px;
  font-weight: 800;
}

.form-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.selected-image-list {
  display: grid;
  gap: 8px;
  margin-top: -8px;
}

.selected-image-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 9px 11px;
  color: var(--green-950);
  font-size: 13px;
  font-weight: 800;
}

.selected-image-item span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-image-item button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--danger);
  padding: 6px 9px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.span-2 {
  grid-column: span 2;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  font-weight: 700;
}

.checkbox-line input {
  width: 18px;
  min-height: 18px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.word-counter {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.word-counter.is-over {
  color: var(--danger);
}

.form-message {
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 800;
}

.form-message ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.form-message li {
  margin: 3px 0;
}

.form-message.success {
  background: var(--green-100);
  color: var(--green-800);
}

.form-message.error {
  background: #fff1f0;
  color: var(--danger);
}

.form-message.info {
  background: #eef3ef;
  color: var(--green-900);
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
  gap: 34px;
  padding: 48px clamp(20px, 5vw, 72px);
  background: var(--green-950);
  color: #dcebe1;
}

.footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 17px;
}

.footer p,
.footer a {
  display: block;
  margin: 8px 0;
  color: #dcebe1;
}

.footer-brand {
  color: #fff;
}

.admin-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: var(--soft);
}

.login-body {
  min-height: 100vh;
  background:
    linear-gradient(rgba(8, 35, 22, 0.78), rgba(8, 35, 22, 0.72)),
    url("/assets/hero-guneysu.png") center/cover;
}

.login-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.login-panel {
  display: grid;
  gap: 22px;
  width: min(440px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  padding: clamp(24px, 5vw, 38px);
}

.login-panel h1 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.12;
}

.login-form {
  display: grid;
  gap: 16px;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 26px;
  background: var(--green-950);
  color: #fff;
}

.admin-brand {
  color: #fff;
  margin-bottom: 34px;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a {
  border-radius: 8px;
  padding: 12px 14px;
  color: #dcebe1;
  font-weight: 800;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  background: var(--green-700);
  color: #fff;
}

.admin-main {
  display: grid;
  gap: 26px;
  align-content: start;
  min-width: 0;
  padding: clamp(20px, 4vw, 44px);
}

.admin-view {
  display: none;
}

.admin-view.is-active {
  display: grid;
  gap: 26px;
}

.admin-panel {
  min-width: 0;
  padding: clamp(18px, 3vw, 32px);
}

.admin-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 10px;
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--green-950);
  font-size: 13px;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.table-actions a,
.table-actions button {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--green-900);
  padding: 7px 9px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.table-actions button[data-delete] {
  color: var(--danger);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  margin: 0;
}

.detail-list div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.detail-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.detail-list dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.upload-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.upload-form input {
  max-width: 420px;
}

.settings-form {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.admin-video-preview {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.admin-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.admin-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.admin-photo button {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--danger);
  padding: 9px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.admin-event-card {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.admin-event-cover {
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-100);
}

.admin-event-cover img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.admin-event-content {
  display: grid;
  gap: 6px;
}

.admin-event-content h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 20px;
}

.admin-event-content p {
  margin: 0;
  color: var(--muted);
}

.admin-event-photo button {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--green-900);
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.admin-event-photo button:last-child {
  color: var(--danger);
}

.admin-event-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.admin-event-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-event-photo.is-cover {
  border-color: var(--green-600);
  box-shadow: inset 0 0 0 2px var(--green-600);
}

.admin-event-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.admin-event-photo div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 6px;
}

.admin-event-photo button {
  min-width: 0;
  padding: 6px;
  font-size: 11px;
}

.empty-text {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 20, 12, 0.58);
  backdrop-filter: blur(8px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-panel {
  width: min(880px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  overflow-x: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  padding: clamp(20px, 4vw, 34px);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.modal-header h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.2;
}

.modal-close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--green-950);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: var(--green-100);
}

.team-modal-panel {
  width: min(760px, 100%);
}

.news-modal-panel {
  width: min(820px, 100%);
}

.news-modal-content {
  display: grid;
  gap: 22px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.news-modal-gallery {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.news-modal-main-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  border-radius: 8px;
  background: #f2f6f3;
}

.news-modal-main-image img {
  width: 100%;
  height: min(460px, 58vh);
  object-fit: contain;
}

.news-gallery-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(8, 35, 22, 0.72);
  color: #fff;
  font: inherit;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.news-gallery-button::before {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 0.72;
}

.news-gallery-button.prev::before {
  content: "‹";
  transform: translate(-1px, -1px);
}

.news-gallery-button.next::before {
  content: "›";
  transform: translate(1px, -1px);
}

.news-gallery-button:hover {
  background: var(--green-800);
}

.news-gallery-button.prev {
  left: 14px;
}

.news-gallery-button.next {
  right: 14px;
}

.news-thumbnail-row {
  display: grid;
  grid-auto-columns: 88px;
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.news-thumbnail-row button {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.news-thumbnail-row button.is-active {
  border-color: var(--green-600);
}

.news-thumbnail-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 360px;
  object-fit: cover;
}

.news-modal-content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.team-modal-content {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
}

.team-modal-photo {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: #fff;
  font-size: 38px;
  font-weight: 900;
}

.team-modal-content p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    min-height: 72px;
    padding: 10px 16px;
    background: rgba(8, 35, 22, 0.86);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .brand {
    min-width: 0;
    padding: 4px 8px 4px 4px;
    text-shadow: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .brand span:last-child {
    max-width: 178px;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    margin-top: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    box-shadow: var(--shadow);
    color: var(--ink);
    padding: 10px 18px 18px;
    text-shadow: none;
    backdrop-filter: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
    line-height: 1.25;
  }

  .site-nav .button {
    width: 100%;
    margin-top: 8px;
  }

  .nav-dropdown {
    display: grid;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    padding: 9px 0;
    color: var(--muted);
  }

  .feature-grid,
  .activity-grid,
  .news-grid,
  .gallery-grid,
  .team-grid,
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid .team-card:first-child {
    grid-column: 1 / -1;
    width: min(100%, 330px);
  }

  .two-column,
  .admin-body {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 720px;
  }

  .about-card-grid {
    max-width: 720px;
  }

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

  .news-card-featured {
    grid-row: auto;
    min-height: 520px;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 108px 20px 70px;
    background: #fff;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    width: min(680px, 100%);
    margin: 0 auto 32px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(40px, 10vw, 68px);
    line-height: 1.02;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(720px, 100%);
    height: clamp(280px, 48vw, 360px);
    min-height: 0;
    border-radius: 18px;
    margin: 0 auto;
    mask: none;
    -webkit-mask: none;
  }

  .hero-visual img {
    min-height: 0;
  }

  .hero-video-card {
    right: 18px;
    bottom: 18px;
  }

  .feature-grid {
    width: min(720px, calc(100% - 40px));
    margin-top: 0;
  }

  .feature:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 8px 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .brand span:last-child {
    max-width: 148px;
    font-size: 12px;
  }

  .site-nav {
    top: 68px;
    max-height: calc(100vh - 68px);
    padding-inline: 16px;
  }

  .hero {
    padding: 88px 16px 34px;
  }

  .page-hero {
    min-height: 185px;
    padding: 92px 18px 36px;
    text-align: center;
  }

  .page-hero h1 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .page-hero p {
    font-size: 16px;
  }

  .hero-content {
    margin-bottom: 24px;
  }

  .hero-badge {
    max-width: 100%;
    padding: 6px 12px;
    font-size: 12px;
    white-space: normal;
  }

  .hero h1 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero-visual {
    height: 230px;
  }

  .hero-video-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: -64px auto 14px;
    color: var(--green-950);
    background: rgba(255, 255, 255, 0.9);
  }

  .hero-video-card strong {
    white-space: normal;
  }

  .section,
  .form-section {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding-block: 54px;
  }

  .form-section {
    padding: 96px 0 58px;
  }

  .feature-grid,
  .activity-grid,
  .news-grid,
  .gallery-grid,
  .footer,
  .form-grid,
  .detail-list,
  .about-card-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-grid .team-card:first-child {
    grid-column: auto;
    width: 100%;
  }

  .about-copy h2 {
    font-size: 31px;
    line-height: 1.14;
  }

  .about-feature-card,
  .board-card {
    min-height: 218px;
  }

  .about-card-content,
  .board-card .about-card-content {
    width: 100%;
    min-height: 218px;
    padding: 24px 72px 24px 24px;
  }

  .about-feature-card:hover,
  .about-feature-card:focus-visible,
  .about-feature-card.board-card:hover,
  .about-feature-card.board-card:focus-visible {
    transform: translateY(-4px);
  }

  .about-card-mark {
    top: 24px;
    right: 22px;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .about-card-arrow {
    right: 20px;
    bottom: 20px;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-more-link {
    min-height: 42px;
    padding: 0 18px;
  }

  .news-section {
    width: min(100% - 32px, 1320px);
  }

  .news-card-featured {
    min-height: 430px;
  }

  .news-card-featured .news-content {
    left: 20px;
    right: 20px;
    top: 116px;
    bottom: 22px;
    gap: 12px;
  }

  .news-card-featured .news-image span {
    left: 20px;
    top: 28px;
    bottom: auto;
  }

  .news-date-line {
    left: 20px;
    top: 72px;
    font-size: 12px;
  }

  .news-card-featured .news-content h3 {
    font-size: 23px;
  }

  .news-card-featured .news-content .detail-link {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  .news-card-compact .news-content h3 {
    font-size: 18px;
  }

  .feature + .feature {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .span-2 {
    grid-column: auto;
  }

  .admin-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-team-card,
  .admin-news-card,
  .admin-event-card {
    grid-template-columns: 1fr;
  }

  .team-modal-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .team-note {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    margin-top: 36px;
    padding: 22px 18px;
  }

  .modal-backdrop {
    padding: 14px;
  }

  .modal-panel {
    max-height: calc(100vh - 28px);
    padding: 18px;
  }

  .news-gallery-button {
    width: 36px;
    height: 36px;
  }

  .news-gallery-button::before {
    font-size: 28px;
  }

  .news-gallery-button.prev {
    left: 8px;
  }

  .news-gallery-button.next {
    right: 8px;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
  }

  .site-nav {
    position: fixed;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a,
  .nav-parent {
    border-bottom: 1px solid #eef3ef;
    padding: 12px 2px;
    font-size: 15px;
  }

  .dropdown-menu {
    margin: 0 0 4px;
    padding: 4px 0 4px 12px;
    background: #f6f8f5;
  }

  .dropdown-menu a {
    border-bottom: 0;
    padding: 8px 10px;
    font-size: 14px;
  }

  .hero,
  .page-hero,
  .form-section {
    padding-top: 96px;
  }

  .hero {
    align-items: start;
    gap: 22px;
  }

  .hero-content {
    margin-bottom: 0;
  }

  .hero h1 {
    max-width: 560px;
  }

  .hero p {
    max-width: 580px;
  }

  .feature-grid {
    border-radius: 14px;
  }

  .section,
  .form-section,
  .feature-grid,
  .news-section {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding-block: 62px;
  }

  .muted {
    padding-inline: 16px;
  }

  .activity-grid article,
  .feature,
  .event-card-content,
  .member-form {
    padding: 20px;
  }

  .about-copy h2,
  .section h2,
  .form-section h2,
  .team-section-heading h2 {
    text-wrap: balance;
  }

  .team-grid {
    margin-top: 64px;
  }

  .team-card {
    min-height: 300px;
    padding: 68px 20px 22px;
  }

  .team-photo-wrap {
    width: 110px;
  }

  .team-photo {
    width: 110px;
    height: 110px;
    font-size: 23px;
  }

  .footer {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .button:hover,
  .news-card:hover,
  .event-card:hover,
  .team-card-clickable:hover,
  .about-feature-card:hover,
  .section-more-link:hover {
    box-shadow: none;
    transform: none;
  }

  .site-header {
    gap: 10px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .site-nav {
    max-height: calc(100dvh - 68px);
    padding: 8px 16px 16px;
  }

  .site-nav .button {
    min-height: 44px;
    border-radius: 8px;
  }

  .hero {
    gap: 16px;
    min-height: auto;
    padding: 80px 16px 24px;
  }

  .hero-badge {
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(29px, 9.5vw, 38px);
  }

  .hero p {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.55;
  }

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

  .hero-actions .button {
    min-height: 42px;
  }

  .hero-visual {
    height: 165px;
    border-radius: 12px;
  }

  .hero-slide-primary {
    animation: heroFirstSlideFade 12s ease-in-out infinite;
  }

  .hero-slide-secondary {
    animation: heroSecondSlideFade 12s ease-in-out infinite;
  }

  .hero-video-card {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    max-width: none;
    margin: 0;
    border-color: var(--line);
    border-radius: 8px;
    box-shadow: none;
    padding: 8px 10px;
  }

  .hero-play {
    width: 30px;
    height: 30px;
    background: var(--green-100);
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 32px);
    border-radius: 12px;
  }

  .feature {
    min-height: 106px;
    padding: 13px 10px;
  }

  .feature + .feature {
    border-top: 0;
  }

  .feature:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .feature:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 7px;
  }

  .feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-stat {
    font-size: 20px;
  }

  .feature h2 {
    margin: 4px 0 4px;
    font-size: 14px;
  }

  .feature p {
    font-size: 12px;
  }

  .section {
    padding-block: 36px;
  }

  #hakkimizda {
    padding-top: 36px;
  }

  .section h2,
  .form-section h2,
  .team-section-heading h2 {
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.18;
  }

  .section-kicker {
    font-size: 12px;
  }

  .two-column {
    gap: 28px;
  }

  .about-copy .section-kicker {
    margin-bottom: 18px;
  }

  .about-copy .section-kicker::after {
    bottom: -8px;
  }

  .about-copy h2 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 28px;
  }

  .about-copy p {
    display: -webkit-box;
    font-size: 14px;
    line-height: 1.65;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .about-copy p + p {
    display: none;
  }

  .about-card-grid {
    gap: 12px;
  }

  .about-feature-card,
  .board-card {
    min-height: 138px;
    border-radius: 10px;
  }

  .about-card-content,
  .board-card .about-card-content {
    min-height: 138px;
    padding: 18px 62px 18px 18px;
  }

  .about-card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .about-card-icon svg {
    width: 21px;
    height: 21px;
  }

  .about-feature-card h3 {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .about-feature-card p {
    display: -webkit-box;
    font-size: 13px;
    line-height: 1.45;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .about-card-mark {
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .about-card-arrow {
    right: 16px;
    bottom: 16px;
    width: 34px;
    height: 34px;
  }

  .activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .activity-grid article {
    min-height: 132px;
    padding: 14px;
  }

  .activity-grid h3 {
    margin: 0 0 4px;
    font-size: 15px;
  }

  .activity-grid p {
    display: -webkit-box;
    font-size: 13px;
    line-height: 1.42;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .section-title-row {
    gap: 12px;
  }

  .section-title-row > div > p:last-child {
    font-size: 14px;
  }

  .section-more-link {
    min-height: 38px;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 13px;
  }

  .news-grid {
    gap: 12px;
    margin-top: 18px;
  }

  .news-grid .news-card:nth-child(n + 4) {
    display: none;
  }

  .news-archive-grid .news-card:nth-child(n + 4) {
    display: grid;
  }

  .news-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .news-card {
    border-radius: 10px;
  }

  .news-card-featured,
  .news-card-compact {
    min-height: 0;
    background: #fff;
    color: var(--ink);
  }

  .news-card-featured .news-image,
  .news-card-compact .news-image {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 9;
  }

  .news-card-featured .news-image::after,
  .news-card-compact .news-image::after {
    background: linear-gradient(180deg, rgba(4, 20, 12, 0), rgba(4, 20, 12, 0.24));
  }

  .news-card-featured .news-image span,
  .news-card-compact .news-image span {
    left: 12px;
    top: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--green-800);
  }

  .news-date-line {
    display: none;
  }

  .news-card-featured .news-content,
  .news-card-compact .news-content {
    position: static;
    display: grid;
    gap: 7px;
    padding: 14px;
  }

  .news-card-featured .news-content time,
  .news-card-compact .news-content time {
    display: block;
    color: var(--muted);
    font-size: 12px;
  }

  .news-card-featured .news-content h3,
  .news-card-compact .news-content h3 {
    display: -webkit-box;
    color: var(--green-950);
    font-size: 18px;
    line-height: 1.25;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .news-card-featured .news-content p {
    display: none;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .news-card-featured .news-content .detail-link,
  .news-card-compact .news-content .detail-link {
    display: inline-flex;
    min-height: auto;
    margin-top: 2px;
    background: transparent;
    color: var(--green-700);
    padding: 0;
    font-size: 13px;
  }

  .news-card-featured .news-content .detail-link::after {
    content: "";
  }

  .news-card-archive .news-content {
    padding: 12px;
  }

  .news-card-archive .news-content h3 {
    font-size: 15px;
  }

  .news-card-archive .news-content p {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
  }

  .gallery-heading,
  .gallery-shell {
    width: min(100% - 28px, 1320px);
  }

  .gallery-stage {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 0;
    padding: 10px 0 18px;
  }

  .gallery-stage > .is-prev {
    display: none;
  }

  .gallery-stage > .is-active {
    transform: scale(1);
    width: min(100%, 360px);
    justify-self: center;
  }

  .gallery-stage > .is-next {
    display: none;
  }

  .gallery-stage > .is-prev,
  .gallery-stage > .is-next {
    opacity: 0;
  }

  .gallery-stage > .is-prev.event-card:hover,
  .gallery-stage > .is-prev.event-card:focus-visible {
    transform: none;
  }

  .gallery-stage > .is-next.event-card:hover,
  .gallery-stage > .is-next.event-card:focus-visible {
    transform: none;
  }

  .gallery-stage > .is-active .event-card-image,
  .gallery-stage > .is-active:is(img) {
    aspect-ratio: 4 / 5;
  }

  .gallery-stage > .is-prev .event-card-content,
  .gallery-stage > .is-next .event-card-content {
    visibility: hidden;
  }

  .gallery-grid > img:nth-child(n + 5),
  .gallery-grid > .event-card:nth-child(n + 5) {
    display: none;
  }

  .gallery-stage > .is-prev,
  .gallery-stage > .is-next {
    display: none;
  }

  .gallery-stage > .is-active {
    display: block;
  }

  .gallery-stage > .is-hidden {
    display: none;
  }

  .gallery-all-link {
    margin-bottom: 34px;
  }

  .gallery-dots {
    margin: 8px 0 24px;
  }

  .gallery-nav-button {
    position: relative;
    top: auto;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .gallery-nav-button:hover,
  .gallery-nav-button:focus-visible {
    transform: scale(1.04);
  }

  .gallery-nav-button::before {
    width: 10px;
    height: 10px;
    border-width: 3px;
  }

  .gallery-nav-prev {
    left: auto;
  }

  .gallery-nav-next {
    right: auto;
  }

  .gallery-shell {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    align-items: center;
    gap: 10px;
  }

  .gallery-shell .gallery-stage {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-shell .gallery-nav-prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .gallery-shell .gallery-nav-next {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
  }

  .gallery-grid img {
    aspect-ratio: 4 / 5;
  }

  .gallery-archive-section {
    width: min(100% - 16px, 1320px);
  }

  .gallery-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .gallery-archive-grid .event-card {
    min-height: 222px;
    border-radius: 8px;
  }

  .gallery-archive-grid .event-card-content {
    min-height: 92px;
    gap: 5px;
    padding: 12px;
  }

  .gallery-archive-grid .event-card-content h3 {
    font-size: 16px;
    line-height: 1.18;
  }

  .gallery-archive-grid .event-card-content time {
    font-size: 10px;
  }

  .gallery-archive-grid .event-card-content .detail-link {
    right: 10px;
    bottom: 12px;
    width: 32px;
    height: 32px;
    font-size: 22px;
  }

  .gallery-archive-grid .event-card-image span {
    left: 8px;
    top: 8px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .event-card {
    border-radius: 10px;
  }

  .event-card-content {
    gap: 6px;
    padding: 14px;
  }

  .event-card-content h3 {
    font-size: 15px;
  }

  .event-card-content p {
    display: none;
  }

  .event-card-content time {
    font-size: 11px;
  }

  .video-shell {
    margin-top: 16px;
    border-radius: 10px;
  }

  .page-hero {
    min-height: 165px;
    padding: 84px 18px 30px;
  }

  .page-hero h1 {
    margin-bottom: 8px;
    font-size: 27px;
    line-height: 1.16;
  }

  .page-hero p {
    font-size: 14px;
  }

  .team-section-heading > p:last-child {
    font-size: 14px;
    line-height: 1.55;
  }

  .team-grid {
    gap: 54px;
    margin-top: 58px;
  }

  .team-card {
    min-height: 266px;
    padding: 60px 16px 18px;
  }

  .team-photo-wrap {
    width: 96px;
  }

  .team-photo {
    width: 96px;
    height: 96px;
    border-width: 5px;
    font-size: 20px;
  }

  .team-card h3 {
    font-size: 19px;
  }

  .team-card-summary {
    min-height: 0;
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }

  .team-socials {
    min-height: 34px;
    margin-bottom: 12px;
  }

  .team-social-link {
    width: 34px;
    height: 34px;
  }

  .team-note-icon {
    width: 52px;
    height: 52px;
  }

  .form-section {
    padding: 92px 0 44px;
  }

  .member-form {
    border-radius: 10px;
    box-shadow: none;
    padding: 18px;
  }

  .form-grid {
    gap: 12px;
  }

  label {
    gap: 5px;
    font-size: 13px;
  }

  input,
  select,
  textarea {
    min-height: 42px;
    border-radius: 8px;
    padding: 9px 11px;
    font-size: 15px;
  }

  .checkbox-line {
    align-items: flex-start;
    margin: 14px 0;
    font-size: 13px;
    line-height: 1.4;
  }

  .member-form > .button {
    width: 100%;
  }

  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    padding: 34px 18px;
  }

  .footer > div:first-child {
    grid-column: 1 / -1;
  }

  .footer .brand {
    width: fit-content;
  }

  .footer p,
  .footer a {
    margin: 6px 0;
    font-size: 14px;
  }

  .modal-panel {
    border-radius: 10px;
  }

  .modal-header {
    gap: 12px;
    margin-bottom: 12px;
  }

  .modal-header h2 {
    font-size: 23px;
  }

  .news-modal-main-image img {
    height: min(300px, 42vh);
  }

  .news-thumbnail-row {
    grid-auto-columns: 70px;
  }

  .team-modal-photo {
    width: 132px;
    height: 132px;
    font-size: 30px;
  }
}

@media (max-width: 390px) {
  .brand span:last-child {
    max-width: 132px;
  }

  .hero {
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-visual {
    height: 170px;
  }

  .feature-grid {
    width: calc(100% - 28px);
  }

  .section,
  .form-section,
  .news-section {
    width: min(100% - 28px, 1180px);
  }
}

@media (min-width: 361px) and (max-width: 640px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 360px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    isolation: isolate;
    min-height: 620px;
    padding: 92px 16px 36px;
    background: var(--green-950);
    color: #fff;
  }

  .hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: block;
    background:
      linear-gradient(180deg, rgba(4, 18, 11, 0.58), rgba(4, 18, 11, 0.34)),
      linear-gradient(90deg, rgba(4, 18, 11, 0.62), rgba(4, 18, 11, 0.08)),
      url("/assets/hero-guneysu.png") center/cover;
    content: "";
    mask-image: none;
  }

  .hero-content {
    display: grid;
    align-content: center;
    min-height: 492px;
  }

  .hero h1,
  .hero p {
    color: #fff;
  }

  .hero h1 span {
    color: #9ff1b8;
  }

  .hero p {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
  }

  .hero h1 {
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.36);
  }

  .hero-badge {
    background: rgba(8, 35, 22, 0.5);
    color: #eefbf2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hero-actions .button-ghost {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .hero-visual {
    display: none;
  }
}

@media print {
  .admin-sidebar,
  [data-admin-section="members"] > .admin-panel:first-child,
  .modal-close,
  .detail-actions {
    display: none;
  }

  .admin-body,
  .admin-main {
    display: block;
    background: #fff;
    padding: 0;
  }

  .modal-backdrop {
    position: static;
    display: block;
    padding: 0;
    background: #fff;
    backdrop-filter: none;
  }

  .modal-panel {
    box-shadow: none;
    border: 0;
    max-height: none;
    padding: 0;
  }
}
