@font-face {
  font-family: "Gotham";
  src: url('../fonts/GothamforZB-Book.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url('../fonts/GothamforZB-Light.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url('../fonts/GothamforZB-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url('../fonts/GothamforZB-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url('../fonts/GothamforZB-Black.woff2') format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-brand: #ed1c24;
  --color-brand-dark: #cf1018;
  --color-brand-rgb: 237, 28, 36;
  --color-text: #000000;
  --color-text-soft: #6b6969;
  --color-line: #e8e8e8;
  --color-surface: #ffffff;
  --color-page: #ffffff;
  --header-max: 1440px;
  --container-max: 1650px;
  --container-padding: clamp(1.25rem, 3vw, 5rem);
  --shadow-mobile: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-cta: 0 16px 40px rgba(237, 28, 36, 0.12);
  --radius-pill: 999px;
  --viewport-height: 100svh;
  --viewport-height: 100dvh;
}

@media (max-width: 100rem) {
  :root {
    --header-max: 1280px;
  }
}

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

::selection {
  background: var(--color-brand);
  color: #ffffff;
}

::-moz-selection {
  background: var(--color-brand);
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  height: 100dvh;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  height: 100%;
  height: 100dvh;
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--color-page);
  color: var(--color-text);
  font-family: "Gotham", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: hidden;
}

body.is-loading {
  overflow: hidden !important;
}

body.preload-complete {
  overflow: hidden;
}

p , ul , ol, a, span {
  letter-spacing: 0.5px;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at top, rgba(var(--color-brand-rgb), 0.18), transparent 38%),
    linear-gradient(135deg, #fffdfd 0%, #ffffff 42%, #f6f6f8 100%);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 520ms ease,
    visibility 520ms ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader[hidden] {
  display: none;
}

.site-preloader__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--color-brand-rgb), 0.08), transparent 32%),
    radial-gradient(circle at 20% 20%, rgba(var(--color-brand-rgb), 0.08), transparent 26%),
    radial-gradient(circle at 80% 78%, rgba(0, 0, 0, 0.045), transparent 20%);
  filter: blur(8px);
}

.site-preloader__core {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  width: min(100%, 23rem);
  padding: clamp(2rem, 4vw, 2.6rem) clamp(1.4rem, 4vw, 2.1rem);
  border: 1px solid rgba(var(--color-brand-rgb), 0.12);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 32px 60px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.site-preloader__core::before {
  content: "";
  position: absolute;
  inset: auto -15% -45% auto;
  width: 11rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-brand-rgb), 0.18), transparent 68%);
  pointer-events: none;
}

.site-preloader__brand-shell {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(4.9rem, 10vw, 5.8rem);
  aspect-ratio: 1;
  padding: 0.95rem;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 32px rgba(var(--color-brand-rgb), 0.12);
}

.site-preloader__logo {
  width: 100%;
  max-width: 2.35rem;
  height: auto;
  animation: preloaderLogoPulse 2s ease-in-out infinite;
}

.site-preloader__halo {
  position: absolute;
  top: clamp(2.1rem, 4vw, 2.75rem);
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(var(--color-brand-rgb), 0.18);
  pointer-events: none;
}

.site-preloader__halo--outer {
  width: clamp(6rem, 12vw, 7rem);
  aspect-ratio: 1;
  animation: preloaderHalo 2.2s ease-out infinite;
}

.site-preloader__halo--inner {
  width: clamp(4.9rem, 10vw, 5.8rem);
  aspect-ratio: 1;
  animation: preloaderHalo 2.2s ease-out infinite 180ms;
}

.site-preloader__status {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  width: 100%;
  text-align: center;
}

.site-preloader__title {
  color: #151515;
  font-size: clamp(0.92rem, 1.35vw, 1rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-preloader__line {
  position: relative;
  display: block;
  width: 100%;
  height: 0.25rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.site-preloader__line-bar {
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 35%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(var(--color-brand-rgb), 0), rgba(var(--color-brand-rgb), 0.55), rgba(var(--color-brand-rgb), 1));
  animation: preloaderSweep 1.25s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes preloaderSweep {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(390%);
  }
}

@keyframes preloaderHalo {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.78);
  }

  30% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.24);
  }
}

@keyframes preloaderLogoPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader,
  .site-preloader__logo,
  .site-preloader__halo,
  .site-preloader__line-bar {
    animation: none !important;
    transition: none !important;
  }

  .site-preloader__line-bar {
    inset: 0;
    width: 100%;
  }
}

html.menu-open,
body.menu-open {
  overflow: hidden !important;
  touch-action: none !important;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

picture {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

button {
  font: inherit;
}

b, strong {
  font-weight: 500;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.brand-color {
  color: var(--color-brand) !important;
}

.site-shell {
  display: flex;
  flex-direction: column;
  height: var(--viewport-height);
  min-height: var(--viewport-height);
  max-height: var(--viewport-height);
  margin-inline: auto;
  background: var(--color-surface);
  overflow: hidden;
}

main {
  flex: 1 1 auto;
  display: flex;
  min-height: 0;
  overflow: hidden;
}

.container {
  width: min(100%, var(--container-max));
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.site-header {
  position: relative;
  z-index: 50;
  background: var(--color-surface);
}

.site-header__main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.50rem;
  min-width: 0;
}

.brand__logo {
  width: clamp(7.1rem, 33vw, 13.0625rem);
  height: auto;
}

.brand__anniversary {
  width: clamp(1.5rem, 7vw, 3rem);
  height: auto;
  flex-shrink: 0;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.site-header__menu-toggle {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.site-header__report,
.icon-button--pdf {
  display: none;
}

.icon-button,
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 0;
  background: transparent;
  padding: 0;
}

.icon-button {
  cursor: pointer;
}

.icon-button__bars {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 1.5rem;
}

.icon-button__line {
  display: block;
  width: 100%;
  height: 0.14rem;
  border-radius: 999px;
  background: var(--color-brand);
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 120ms ease;
}

.site-header--menu-open .icon-button--menu .icon-button__line:nth-child(1) {
  transform: translateY(0.29rem) rotate(45deg);
}

.site-header--menu-open .icon-button--menu .icon-button__line:nth-child(2) {
  opacity: 0;
}

.site-header--menu-open .icon-button--menu .icon-button__line:nth-child(3) {
  transform: translateY(-0.49rem) rotate(-45deg);
}

.lang-switch {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.breadcrumb-bar {
  display: none;
}

.site-menu {
  position: absolute;
  inset-inline: 0;
  top: 100%;
  z-index: 40;
  display: flex;
  flex-direction: column;
  height: calc(var(--viewport-height) - 55px);
}

.site-menu[hidden] {
  display: none !important;
}

.site-menu__backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity 140ms ease;
}

.site-menu__panel {
  position: relative;
  z-index: 1;
  margin-top: 0;
  background: linear-gradient(250deg, #FF0004 3.5%, #A60003 95.78%);
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding: 2rem 1.25rem 2.5rem;
  overflow: hidden;
  opacity: 0;
  transition: opacity 140ms ease;
}

.site-menu.is-open .site-menu__backdrop {
  opacity: 1;
}

.site-menu.is-open .site-menu__panel {
  opacity: 1;
}

.site-menu__grid {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.site-menu__col {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

@media (max-width: 47.99rem) {
  .site-menu__col:last-child .menu-link:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  padding-bottom: 0.95rem;
  white-space: initial;
}

.menu-link__body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.menu-link__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.18;
}

.menu-link__subtitle {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.18;
}

.menu-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--color-brand);
}

.menu-link__icon img {
  width: 1rem;
  height: 1rem;
}

.hero {
  background: var(--color-surface);
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.hero__outer {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  padding-inline: 0;
}

.hero__frame {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
  background: #f5f5f5;
}

.hero__picture,
.hero__media {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__picture {
  position: absolute;
  inset: 0;
}

.hero__media {
  object-fit: cover;
  object-position: center center;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 1rem 1.25rem 0;
  color: #ffffff;
}

.hero__eyebrow {
  margin: 0 0 0.3125rem;
  font-size: clamp(1.625rem, 6vw, 3.25rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.625rem, 7vw, 4.75rem);
  font-weight: 900;
  line-height: 1.2;
}

.hero__cta {
  position: absolute;
  right: 1.25rem;
  bottom: 1.9375rem;
  left: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
  padding: 0.5rem 0.625rem 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: var(--color-brand);
  box-shadow: var(--shadow-cta);
  font-size: 1.5rem;
  font-weight: 500;
  border: none;
}

.hero__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1875rem;
  height: 2.1875rem;
  border: 1px solid var(--color-brand);
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}

.hero__cta-icon img {
  width: 1.3125rem;
  height: 1.3125rem;
}

.hero__footer {
  position: absolute;
  bottom: 6.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
}

.hero__footer img {
  pointer-events: auto;
}

.hero__slogan {
  display: block;
}

.hero__slogan img {
  display: block;
  width: clamp(12rem, 54vw, 17rem);
  height: auto;
}

.hero__year {
  display: block;
}

.hero__year img {
  display: block;
  width: clamp(5rem, 28vw, 8.5rem);
  height: auto;
}

@media (min-width: 48rem) {
  .site-header--menu-open .breadcrumb-bar {
    display: none;
  }

  .site-header__main {
    max-width: var(--header-max);
  }

  .site-menu {
    height: calc(var(--viewport-height) - 5.625rem);
  }

  .site-menu__panel {
    position: relative;
    height: auto;
    padding: 2.85rem max(var(--container-padding), calc((100vw - var(--header-max)) / 2 + var(--container-padding))) 3rem;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }

  .site-menu__panel::before , .giris-screen__content::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('../assets/site-menu__panel-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    z-index: -1;
  }

  .rh-main::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 29.06vw;
    height: 40.47vw;
    background-image: url('../assets/rh-main-bg.svg');
    background-repeat: no-repeat;
    background-position: top left;
    z-index: -1;
  }

  .site-menu__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 2.3rem;
    align-items: stretch;
  }

  .site-menu__col {
    justify-content: space-between;
    gap: 3rem;
  }

  .menu-link {
    height: auto;
    padding-block: 0.15rem 0.95rem;
  }

  .menu-link__title {
    font-size: clamp(1.16rem, 1.42vw, 1.34rem);
    font-weight: 700;
    line-height: 1.08;
  }

  .menu-link__subtitle {
    font-size: clamp(1.08rem, 1.2vw, 1.18rem);
    font-weight: 400;
    line-height: 1.08;
  }

  .menu-link__icon {
    width: 2.1875rem;
    height: 2.1875rem;
  }

  .menu-link__icon img {
    width: 1.25rem;
    height: 1.25rem;
  }

  .icon-button__bars {
    width: 2.05rem;
    gap: 0.32rem;
  }

  .icon-button__line {
    height: 0.25rem;
  }

  .site-header--menu-open .icon-button--menu .icon-button__line:nth-child(1) {
    transform: translateY(0.59rem) rotate(45deg);
  }

  .hero__outer {
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
  }

  .site-header__main {
    align-items: center;
    min-height: 5.625rem;
    padding-block: 0.875rem;
  }

  .brand {
    gap: 1rem;
  }

  .brand__logo {
    width: clamp(11rem, 21vw, 13.0625rem);
  }

  .brand__anniversary {
    width: 3rem;
  }

  .site-header__actions {
    gap: 0.35rem;
  }

  .site-header__report {
    display: block;
    margin: 0;
    padding-right: 0.5rem;
    font-size: clamp(0.95rem, 1.05vw, 1.125rem);
    font-weight: 500;
    color: var(--color-text-soft);
    white-space: nowrap;
    transition: color 150ms ease;
  }

  .site-header__menu-toggle:hover .site-header__report {
    color: var(--color-brand);
  }

  .icon-button,
  .lang-switch {
    width: 3rem;
    height: 3rem;
  }

  .icon-button--pdf {
    display: inline-flex;
  }

  .lang-switch {
    font-size: 1.125rem;
  }

  .breadcrumb-bar {
    display: block;
    border-top: 1px solid var(--color-line);
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    margin: 0;
    padding: 0.875rem 0 0.8125rem;
    list-style: none;
    font-size: 0.75rem;
  }

  .breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
    color: var(--color-text-soft);
    white-space: nowrap;
  }

  .breadcrumb li+li::before {
    content: "\203A";
  }

  .breadcrumb [aria-current="page"] {
    color: var(--color-text);
  }

  .hero__frame {
    width: 100%;
  }

  .hero__media {
    object-position: center bottom;
  }

  .hero__content {
    padding:
      clamp(3.9rem, 8.6vh, 5.2rem) 0 0 max(var(--container-padding), calc((100vw - var(--container-max)) / 2 + var(--container-padding)));
  }

  .hero__eyebrow {
    margin-bottom: 0.7rem;
    font-size: clamp(2.5rem, 3.5vw, 4.15rem);
  }

  .hero h1 {
    font-size: clamp(3rem, 4vw, 5rem);
    line-height: 1.2;
  }

  .hero__cta {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: inline-flex;
    justify-content: space-between;
    width: 13.813rem;
    min-height: 3.25rem;
    margin:
      2.3rem 0 0 max(var(--container-padding), calc((100vw - var(--container-max)) / 2 + var(--container-padding)));
    padding: 0.5rem 0.625rem 0.5rem 1.125rem;
    background: var(--color-brand);
    color: #ffffff;
    box-shadow: none;
    font-size: 1.5rem;
  }

  .hero__cta-icon {
    background: #ffffff;
  }

  .hero__footer {
    bottom: clamp(2rem, 4.5vh, 3.5rem);
    left: max(var(--container-padding), calc((100vw - var(--container-max)) / 2 + var(--container-padding)));
    right: max(var(--container-padding), calc((100vw - var(--container-max)) / 2 + var(--container-padding)));
  }

  .hero__slogan img {
    width: clamp(16rem, 28vw, 28rem);
  }

  .hero__year img {
    width: clamp(7rem, 12vw, 12rem);
  }

  .mobile-only {
    display: none;
  }
}

@media (min-width: 64rem) {
  .hero__media {
    object-position: center bottom;
  }
}

@media (max-width: 47.99rem) {
  .site-header--menu-open {
    box-shadow: var(--shadow-mobile);
  }

  .site-menu {
    height: calc(var(--viewport-height) - 55px);
  }

  .site-menu__backdrop {
    background: rgba(0, 0, 0, 0.44);
  }

  .site-menu__panel {
    background: var(--color-brand);
    min-height: calc(95dvh - 55px);
    max-height: calc(95dvh - 55px);
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    padding-top: 1.95rem;
    padding-bottom: 2.8rem;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .site-menu__grid {
    gap: 0.95rem;
  }

  .icon-button--pdf {
    display: none;
  }

  .site-header__menu-toggle {
    order: 1;
  }

  .menu-link {
    padding-bottom: 0.9rem;
  }

  .menu-link__title,
  .menu-link__subtitle {
    line-height: 1.15;
  }

  .hero__footer {
    align-items: center;
    bottom: 8.25rem;
  }

  .hero__slogan img {
    width: auto;
    max-height: 4.375rem;
  }

  html:lang(en) .hero__slogan img {
    max-height: 5.875rem;
  }

  .hero__year img {
     max-width: 5.938rem;
  }

  html:lang(en) .hero__year img {
     max-width: 6.438rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Giris page */

.giris-page {
  background: #ffffff;
}

.giris-page .site-header {
  flex-shrink: 0;
}

.giris-main {
  flex: 1 1 auto;
  min-height: 0;
}

.giris-screen {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(225deg, #ff0204 4%, #b00007 96%);
}

.giris-screen__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container-max));
  height: 100%;
  margin-inline: auto;
  padding:
    clamp(2.25rem, 5vh, 3rem) var(--container-padding) clamp(5.75rem, 10vh, 7rem);
}

.giris-menu {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vh, 2.5rem);
  width: min(25.8125rem, 100%);
  color: #ffffff;
}

.giris-menu__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.giris-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.giris-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: clamp(0.95rem, 1.15vw, 1rem);
  font-weight: 500;
  line-height: 1.25;
}

.giris-menu__item img {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.giris-screen__mark {
  display: none;
}

.giris-next-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.giris-next {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 4.375rem;
  padding: 0 var(--container-padding);
  background: #ed1c24;
}

.giris-next__mark-desktop {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.giris-next__mark-desktop img {
  width: 4.125rem;
  height: auto;
}

.giris-next__link {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 1.125rem;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.3vw, 1.125rem);
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.giris-next__link b {
  font-weight: 700;
}

.giris-next__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}

.giris-next__icon img {
  width: 1.3125rem;
  height: 1.3125rem;
}

/* ── 3-column footer variant (prev / mark / next) ── */
.giris-next__link--prev {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 1.125rem;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.3vw, 1.125rem);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
}

.giris-next__link--prev .giris-next__icon--prev {
  order: -1;
}

.giris-next__icon--prev {
  transform: rotate(180deg);
}

.giris-next__mark {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.giris-next__mark img {
  width: 4.125rem;
  height: auto;
}

.giris-footer {
  display: none;
}

@media (max-width: 63.99rem) {
  .giris-screen__content {
    padding-top: clamp(2rem, 4.8vh, 2.5rem);
  }
}

@media (max-width: 47.99rem) {
  .giris-screen {
    display: flex;
    flex-direction: column;
    background: linear-gradient(260.48deg, #ff0004 3.5%, #a60003 95.78%);
  }

  .giris-screen__content {
    z-index: 1;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    padding-top: 1.875rem;
    padding-bottom: 5.375rem;
  }

  .giris-menu {
    width: 100%;
    max-width: 20.9375rem;
    gap: 2.9375rem;
  }

  .giris-menu__title {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
  }

  .giris-menu__nav {
    gap: 0.5rem;
  }

  .giris-menu__item {
    font-size: 1rem;
    font-weight: 400;
    gap: 0.5rem;
    padding-block: 0.25rem;
  }

  .giris-screen__mark {
    display: block;
    position: absolute;
    left: var(--container-padding);
    bottom: 3.75rem;
  }

  .giris-screen__mark img {
    width: 4.01725rem;
    height: auto;
  }

  .giris-next-wrap {
    position: static;
    padding-bottom: 1.875rem;
    background: inherit;
  }

  .giris-next {
    display: flex;
    justify-content: flex-end;
    min-height: 3.375rem;
    padding: 0.75rem var(--container-padding);
    background: #ed1c24;
  }

  .giris-next__mark-desktop {
    display: none;
  }

  .giris-next__link {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1;
    white-space: normal;
  }

  .giris-next__icon {
    width: 1.5rem;
    height: 1.5rem;
    border: 0.6px solid #ed1c24;
  }

  .giris-next__icon img {
    width: 0.9rem;
    height: 0.9rem;
  }

  .giris-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem 1.125rem;
    background: #f4f4f6;
    border-top: 1px solid rgba(107, 105, 105, 0.3);
    color: #6b6969;
    text-align: center;
  }

  .giris-footer__copy,
  .giris-footer__credit {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.2;
  }

  .giris-footer__credit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .giris-footer__krea {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
  }

  .giris-footer__krea img {
    max-width: 3.438rem;
  }

  .giris-footer__krea-word {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: #10069f;
  }

  .giris-footer__krea-sub {
    padding-left: 0.1875rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.28125rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #10069f;
  }
}

/* ============================================================
   RAPOR HAKKINDA PAGE
   ============================================================ */

/* Shell override – this page scrolls naturally */
.raporhakkinda-page .site-shell {
  height: auto;
  max-height: none;
  min-height: 100dvh;
}

.raporhakkinda-page body,
.raporhakkinda-page html {
  overflow-y: auto;
}

.raporhakkinda-shell {
  overflow-y: auto;
}

.raporhakkinda-page .rh-main {
  position: relative;
  isolation: isolate;
}

.raporhakkinda-page .rh-main::after {
  display: none;
}

/* ── Main wrapper ── */
.rh-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.rh-page-container {
  width: 100%;
  max-width: var(--header-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* ── Page title band ── */
.rh-title-band {
  padding: 1.75rem 0 0;
}

.rh-eyebrow {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-brand);
  text-transform: none;
}

.rh-heading {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--color-brand);
}

/* ── Two-column intro section ── */
.rh-intro-section {
  position: relative;
  padding: 0 0 2rem;
}

.rh-intro-container {
  display: block;
  overflow: hidden;
}

.rh-intro-left {
  display: block;
}

.rh-body-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3125;
  color: #000000;
}

.rh-body-text+.rh-body-text {
  margin-top: 1em;
}

.rh-body-text a {
  color: var(--color-brand);
  font-weight: 500;
  text-decoration: underline;
}

.rh-subsection {
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;
}

.rh-subsection:last-child {
  margin-bottom: 2rem;
}

.rh-subsection-title {
  margin: 0 0 1.5rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand);
}

/* Right column – building photo */
.rh-intro-right {
  float: right;
  width: min(48.6%, 34rem);
  margin: 0 0 1.5rem 2rem;
}

.rh-image-wrap {
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
}

.rh-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ── Full-width info band ── */
.rh-info-band {
  position: relative;
  padding: 0 0 3rem;
  background: #ffffff;
  overflow: hidden;
}

.rh-info-band__pattern {
  display: none;
}

.rh-info-band__content {
  position: relative;
  z-index: 1;
}

.rh-info-lead {
  padding-bottom: 0;
  margin-bottom: 1em;
  border-bottom: none;
}

.rh-info-lead-sub {
  padding-bottom: 0;
  margin-bottom: 2rem;
  border-bottom: none;
}

.rh-info-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rh-info-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rh-info-item .rh-body-text {
  margin-top: 0;
}

.rh-info-item .rh-body-text+.rh-body-text {
  margin-top: 1em;
}

.rh-info-title {
  margin: 0 0 1.5rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand);
  padding-bottom: 0;
  border-bottom: none;
  display: block;
}

.rh-email-link {
  color: var(--color-brand);
  font-weight: 500;
  word-break: break-all;
}

.rh-email-link:hover {
  text-decoration: underline;
}

/* ── Chapter navigation (bottom) ── */
.rh-chapter-nav {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.rh-chapter-nav>.rh-page-container {
  position: relative;
  z-index: 1;
}

/* Pill-shaped chapter buttons */
.rh-chapter-buttons {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.rh-chapter-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  font-size: clamp(0.875rem, 1.25vw, 1.125rem);
  font-weight: 400;
  color: #ffffff;
  transition: opacity 180ms ease, transform 140ms ease;
  text-decoration: none;
  min-height: 3.25rem;
  white-space: initial;
}

.rh-chapter-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.rh-chapter-btn--prev {
  background: #a6a6a6;
  flex: 1 1 0;
}

.rh-chapter-btn--next {
  background: var(--color-brand);
  flex: 1 1 0;
  justify-content: flex-end;
  min-width: 0;
}

/* Mobile button hidden by default */
.rh-chapter-btn--next-mobile {
  display: none;
}

.rh-chapter-btn__text {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.3;
}

.rh-chapter-btn--next .rh-chapter-btn__text {
  text-align: right;
  font-weight: 500;
}

.rh-chapter-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 50%;
  border: 1px solid var(--color-brand);
  background: #ffffff;
  flex-shrink: 0;
}

.rh-chapter-btn__icon--rev {
  border-color: var(--color-brand);
}

.rh-chapter-btn__icon--rev img {
  transform: rotate(180deg);
}

/* Footer card (rapor hakkında summary) */
.rh-footer-card {
  padding: 2rem 1.25rem;
  background: #f4f4f6;
  border-radius: 0.5rem;
  margin: 0 0 1.5rem;
}

.rh-footer-card__title {
  margin: 0 0 1rem;
  font-size: clamp(1.1rem, 1.8vw, 1.625rem);
  font-weight: 700;
  color: var(--color-text);
}

.rh-footer-card__text {
  margin: 0 0 1rem;
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  font-weight: 300;
  line-height: 1.72;
  color: #000;
}

.rh-footer-card__email {
  display: inline-block;
  font-size: clamp(0.78rem, 0.95vw, 0.875rem);
  font-weight: 500;
  color: #ff0004;
  word-break: break-all;
  text-decoration: underline;
}

.rh-footer-card__email:hover {
  text-decoration: none;
}

/* ── Site footer ── */
.rh-site-footer {
  background: #f4f4f6;
  color: #000;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(107, 105, 105, 0.3);
}

.rh-site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.rh-site-footer__copy {
  margin: 0;
  font-size: clamp(0.8125rem, 1.1vw, 1.125rem);
  font-weight: 300;
  color: #000;
}

.rh-site-footer__credit {
  margin: 0;
  font-size: clamp(0.8125rem, 1.1vw, 1.125rem);
  font-weight: 300;
  color: #000;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rh-site-footer__krea-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
}

.rh-site-footer__krea-lockup img {
  max-width: 5.75rem;
}

.rh-site-footer__krea {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: 0.08em;
  color: #10069f;
}

.rh-site-footer__krea-sub {
  padding-left: 0.18rem;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.24rem, 0.36vw, 0.34rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #10069f;
}

/* ── Mobile < 768px ── */
@media (max-width: 47.999rem) {
  .rh-page-container {
    max-width: none;
  }

  /* Hide "Rapor Hakkında" heading on mobile — only show eyebrow */
  .rh-heading {
    font-size: 1.5rem;
  }

  /* Eyebrow: 24px bold on mobile */
  .rh-eyebrow {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  /* Body text: 14px on mobile */
  .rh-body-text {
    font-size: 0.875rem;
    line-height: 1.43;
  }

  /* Section titles: 18px on mobile */
  .rh-subsection-title,
  .rh-info-title {
    font-size: 1.125rem;
    margin-bottom: 0.875rem;
  }

  /* Subsection gap */
  .rh-subsection {
    margin-top: 1.5rem;
  }

  /* Info band sections gap */
  .rh-info-stack {
    gap: 1.5rem;
  }

  .rh-info-item {
    gap: 0;
  }

  /* Info lead paragraphs */
  .rh-info-lead,
  .rh-info-lead-sub {
    margin-bottom: 1em;
    padding-bottom: 0;
  }

  /* Intro section padding */
  .rh-intro-section {
    padding: 0 0 1.5rem;
  }

  .rh-intro-container {
    overflow: visible;
  }

  .rh-intro-right {
    float: none;
    width: 100%;
    max-width: 20.9375rem;
    margin: 0 0 1.5rem;
  }

  .rh-image-wrap {
    border-radius: 0.875rem;
  }

  .rh-chapter-btn--next-mobile {
    display: flex;
    flex: 1 1 100%;
    width: 100%;
  }

  .rh-chapter-btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
    min-height: 3.375rem;
  }

  .rh-chapter-btn__icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .rh-chapter-btn__icon img {
    width: 1rem;
    height: 1rem;
  }

  /* Footer card: mobile sizing */
  .rh-footer-card {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin: 0 0 0.5rem;
  }

  .rh-footer-card__title {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  .rh-footer-card__text {
    font-size: 0.875rem;
    line-height: 1.43;
  }

  .rh-footer-card__email {
    font-size: 0.875rem;
  }

  /* Chapter nav */
  .rh-chapter-nav {
    padding-top: 0;
  }

  .rh-chapter-nav>.rh-page-container {
    display: flex;
    flex-direction: column;
  }

  .rh-chapter-nav::after {
    top: -1.5rem;
    right: -7.5rem;
    width: 21rem;
    height: 16rem;
    opacity: 0.5;
  }

  .rh-chapter-buttons {
    margin-bottom: 2rem;
  }

  /* Site footer: centered, shadow on top */
  .rh-site-footer {
    background: #ffffff;
    border-top: none;
    box-shadow: 0 -0.375rem 1.25rem rgba(0, 0, 0, 0.1);
    margin-top: 1.75rem;
    padding: 0.875rem 1.25rem;
  }

  .rh-site-footer__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .rh-site-footer__copy,
  .rh-site-footer__credit {
    font-size: 0.75rem;
    color: #6b6969;
  }

  .rh-site-footer__krea-lockup img {
    max-width: 2.875rem;
  }

  .rh-site-footer__krea-sub {
    font-size: 0.22rem;
  }

  .ykb-page .rh-chapter-btn--prev {
    display: flex;
  }

  .ykb-page .rh-chapter-btn--next-desktop {
    display: flex;
  }

  .ykb-page .rh-chapter-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .ykb-page .rh-chapter-btn {
    width: 100%;
    flex: 0 0 auto;
  }
}

/* ── Tablet 768px+ ── */
@media (min-width: 48rem) {
  .rh-title-band {
    padding: 2.25rem 0 0;
  }

  .rh-eyebrow {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }

  .rh-heading {
    font-size: clamp(2rem, 3.5vw, 2.625rem);
  }

  .rh-intro-section {
    padding: 0 0 1.5rem;
  }

  .rh-footer-card {
    padding: 2rem;
  }

  .rh-chapter-buttons {
    gap: 1.25rem;
  }
}

/* ── Desktop 1024px+ ── */
@media (min-width: 64rem) {
  .rh-title-band {
    padding: 2.5rem 0 0;
  }

  .rh-image-wrap {
    border-radius: 1.25rem;
  }

  .rh-info-band {
    padding: 0 0 4rem;
  }

  .rh-info-stack {
    gap: 2rem;
  }

  .rh-footer-card {
    padding: 2rem 1.25rem;
    border-radius: 0.5rem;
    margin: 0 0 2rem;
  }

  .rh-chapter-btn {
    font-size: 1.125rem;
  }
}

/* ============================================================
   YONETIM KURULU BASKANI PAGE
   ============================================================ */

.ykb-page .rh-main {
  position: relative;
  isolation: isolate;
}

.ykb-main {
  background: #ffffff;
}

.ykb-title-band {
  padding-bottom: 0.75rem;
}

.ykb-message-section {
  padding: 0 0 2.5rem;
}

.ykb-top-grid {
  display: grid;
  grid-template-columns: 47.6875rem 17.1875rem;
  width: min(100%, 65rem);
  justify-content: space-between;
  gap: 0;
  align-items: start;
  margin-right: auto;
}

.ykb-copy {
  max-width: 47.6875rem;
}

.ykb-copy .rh-body-text+.rh-body-text,
.ykb-copy-block .rh-body-text+.rh-body-text {
  margin-top: 1rem;
}

.ykb-portrait-card {
  width: 17.1875rem;
  max-width: 17.1875rem;
  justify-self: start;
}

.ykb-portrait-card__inner {
  width: 100%;
}

.ykb-portrait-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.ykb-portrait-card__caption {
  margin-top: -4.75rem;
  margin-bottom: 2rem;
  margin-left: 3.375rem;
  text-align: left;
  color: #000000;
}

.ykb-portrait-card__caption strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.ykb-portrait-card__caption span {
  display: block;
  margin-top: 0.2rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
}

.ykb-copy-block {
  margin-top: 1.25rem;
}

.ykb-signature {
  margin-top: 1.75rem;
  color: #000000;
}

.ykb-signature strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.ykb-signature span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.2;
}

@media (max-width: 63.99rem) {
  .ykb-top-grid {
    grid-template-columns: minmax(0, 1fr) 14.5rem;
    width: 100%;
    gap: 2rem;
  }

  .ykb-portrait-card {
    max-width: 14.5rem;
    width: 14.5rem;
  }

  .ykb-portrait-card__caption {
    width: auto;
    margin-left: 1.75rem;
  }
}

@media (max-width: 47.999rem) {
  .ykb-page .rh-main::before {
    top: 2.25rem;
    width: 4.75rem;
    height: 10rem;
    background-size: 100% 1.7rem, 100% 1.7rem;
    opacity: 0.26;
  }

  .ykb-title-band {
    padding-bottom: 0;
  }

  .ykb-page .rh-heading {
    font-size: 1.25rem;
  }

  .ykb-message-section {
    padding-bottom: 2rem;
  }

  .ykb-top-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ykb-copy {
    max-width: none;
    order: 2;
  }

  .ykb-portrait-card {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    position: relative;
    display: flex;
    justify-content: end;
  }

  .ykb-portrait-card__inner , .gm-portrait-card__image {
    max-width: 16.375rem;
  }

  .ykb-portrait-card__caption {
    position: absolute;
    top: 1.375rem;
    left: 0;
    margin: 0;
    text-align: left;
    z-index: 1;
  }

  .ykb-copy-block {
    margin-top: 1.5rem;
  }

  .ykb-signature {
    margin-top: 1.5rem;
  }
}

/* ============================================================
   GENEL MUDUR PAGE
   ============================================================ */
.gm-title-band {
  padding-bottom: 0.75rem;
}

.gm-message-section {
  padding: 0 0 2rem;
}

.gm-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20.125rem;
  gap: 3.1875rem;
  align-items: start;
  margin-bottom: -5rem;
}

.gm-top-copy {
  max-width: 52.6875rem;
}

.gm-top-copy .rh-body-text+.rh-body-text {
  margin-top: 0.9rem;
}

.gm-portrait-card {
  position: relative;
  min-width: 0;
}

.gm-portrait-card__inner {
  position: relative;
  padding: 0 1.25rem 0 0;
  border-radius: 0.75rem;
}

.gm-portrait-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.gm-portrait-card__caption {
  position: absolute;
  left: 0;
  bottom: 7.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #000000;
}

.gm-portrait-card__caption strong {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.gm-portrait-card__caption span {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
}

.gm-img-block {
  position: relative;
  margin: 3rem 0 2rem;
}

.gm-img-block img {
  width: 100%;
  height: auto;
}

.gm-callout {
  position: relative;
  margin-top: 2rem;
  border: 1px solid rgba(237, 28, 36, 0.72);
  border-radius: 0.25rem;
  padding: 1.2rem 1.5rem 1.2rem 1.15rem;
  color: var(--color-brand);
  background: rgba(255, 255, 255, 0.96);
}

.gm-callout::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 10px;
  height: 32px;
  background: #fff url('../assets/iconlogo.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
  transform: translate(-50%,-50%);
}

.gm-callout p {
  margin: 0;
  padding-left: 0.35rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
}

.gm-callout p + p {
  margin-top: 1.50rem; 
}

.gm-copy-block {
  position: relative;
  margin-top: 2rem;
  z-index: 2;
}

.gm-copy-block .rh-body-text+.rh-body-text {
  margin-top: 0.95rem;
}

.gm-signature {
  margin-top: 2rem;
  color: #000000;
}

.gm-signature strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.gm-signature span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.2;
}

.gm-feature-image {
  margin-top: 1.25rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.gm-feature-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 63.99rem) {
  .gm-top-grid {
    grid-template-columns: 1fr 19rem;
    gap: 2rem;
  }

  .gm-portrait-card__caption {
    bottom: 4rem;
  }

  .gm-callout p {
    font-size: 1rem;
  }
}

@media (max-width: 47.999rem) {
  .site-header {
    box-shadow: 0 0.25rem 1.125rem rgba(0, 0, 0, 0.08);
  }

  .gm-title-band {
    padding-bottom: 0;
  }

  .gm-top-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
  }

  .gm-top-copy {
    max-width: none;
    order: 2;
  }

  .gm-portrait-card__inner {
    display: flex;
    justify-content: center;
  }

  .gm-portrait-card__caption {
    bottom: auto;
    top: 1rem;
  }

  .gm-callout {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 1rem 1rem 0.85rem;
  }

  .gm-callout p {
    font-size: 1rem;
    line-height: normal;
  }

  .gm-copy-block {
    margin-top: 1.5rem;
  }

  .gm-signature {
    margin-top: 1.5rem;
  }

  .gm-feature-image {
    margin-top: 1rem;
  }

  .gm-img-block {
    margin: 2rem 0 0;
  }
}

/* ============================================================
   BIR BAKISTA ZIRAAT BANKASI PAGE
   ============================================================ */

.bb-main {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.bb-hero {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
}

.bb-hero > .giris-next {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.bb-hero__bg {
  position: absolute;
  inset: 0 0 70px;
  z-index: 1;
}

.bb-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 5.76%, transparent 50%);
}

.bb-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container-max));
  margin: 0 auto;
  padding: clamp(3rem, 5vh, 8.125rem) var(--container-padding) clamp(6rem, 12vh, 8rem) 5rem;
}

.bb-menu {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 5vh, 20px);
  width: min(100%, 28rem);
}

.bb-menu__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.2;
}

.bb-menu__title-light {
  display: block;
  font-weight: 300;
}

.bb-menu__title-bold {
  display: block;
  font-weight: 700;
}

.bb-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bb-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.25rem 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  transition: opacity 150ms ease;
  white-space: initial;
}

.bb-menu__item:hover {
  opacity: 0.8;
}

.bb-menu__item img {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

@media (min-width: 48em) {
  .bb-page .bb-mobile-footer,
  .bb-page .rh-site-footer {
    display: none;
  }
}

@media (max-width: 47.99rem) {
  .bb-hero {
    flex-direction: column;
    overflow: visible;
  }

  .bb-hero__content {
    display: contents !important;
  }

  .bb-menu {
    display: contents;
  }

  .bb-menu__title {
    order: 1;
    color: var(--color-ziraat-red, #ed1c24);
    padding: clamp(2rem, 5vh, 3rem) var(--container-padding) 1.5rem;
  }

  .bb-hero__bg {
    order: 2;
    position: relative;
    height: 14.125rem;
    margin: 0 var(--container-padding);
  }

  .bb-hero__overlay {
    display: none;
  }

  .bb-menu__nav {
    order: 3;
    padding: 1.5rem var(--container-padding) 0;
    gap: 0.5rem;
  }

  .bb-menu__item {
    color: #000000;
  }

  .bb-menu__item img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(87%) saturate(3065%) hue-rotate(346deg) brightness(97%) contrast(100%);
  }

  .bb-desktop-only {
    display: none !important;
  }

  .bb-mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    /* 30px */
    width: 100%;
  }

  .bb-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* 8px */
    width: 100%;
    margin-top: 3rem;
  }

  .bb-mobile-nav__link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 3.375rem;
    /* 54px */
    padding: 0.75rem var(--container-padding);
    gap: 0.75rem;
    /* 12px */
    text-decoration: none;
  }

  .bb-mobile-nav__link--prev {
    background-color: #a6a6a6;
    justify-content: flex-start;
  }

  .bb-mobile-nav__link--next {
    background-color: #ed1c24;
    justify-content: flex-end;
  }

  .bb-mobile-nav__text {
    flex: 1;
    color: #ffffff;
    font-size: 0.875rem;
    /* 14px */
  }

  .bb-mobile-nav__link--prev .bb-mobile-nav__text {
    text-align: left;
    font-weight: 400;
    /* Book */
  }

  .bb-mobile-nav__link--next .bb-mobile-nav__text {
    text-align: right;
    font-weight: 500;
    /* Medium */
  }

  .bb-mobile-nav__icon {
    width: 1.5rem;
    /* 24px */
    height: 1.5rem;
    /* 24px */
    border-radius: 50%;
    background: #ffffff;
    border: 0.6px solid #ed1c24;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .bb-mobile-nav__icon img {
    filter: invert(20%) sepia(87%) saturate(3065%) hue-rotate(346deg) brightness(97%) contrast(100%);
    width: 0.875rem;
    height: 0.875rem;
  }

  .bb-mobile-nav__icon--prev {
    transform: rotate(180deg);
  }

  .bb-mobile-footer .rh-site-footer__inner {
    background: #f4f4f6;
    width: 100%;
    padding: 1.25rem 0;
    /* py-[20px] */
    border-top: 1px solid rgba(107, 105, 105, 0.3);
  }

  .bb-mobile-footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    /* 12px */
  }

  .bb-mobile-footer__container p {
    margin: 0;
    text-align: center;
  }
}

/* ============================================================
   ZIRAAT BANKASI HAKKINDA PAGE
   ============================================================ */

/* ── Hero Banner ── */
.zbh-hero-banner {
  padding: 0 0 2rem;
}

.zbh-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.zbh-hero-map {
  position: relative;
  overflow: hidden;
}

.zbh-hero-map__img {
  display: block;
  width: 100%;
  height: auto;
}

.zbh-hero-table {
  flex-shrink: 0;
}

.zbh-hero-table__img {
  display: block;
  width: 16.25rem;
  height: auto;
}

/* ── Body Text Sections ── */
.zbh-body-section {
  padding: 0 0 2rem;
}

.zbh-body-section--continued {
  padding: 0 0 2.5rem;
}

.zbh-body-content {
  max-width: 100%;
}

.zbh-body-content .rh-body-text + .rh-body-text {
  margin-top: 1rem;
}

/* ── Finans Section (two-column grid) ── */
.zbh-finans-section {
  padding: 0 0 2.5rem;
}

.zbh-finans-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3.375rem;
  align-items: start;
}

.zbh-finans-left {
  max-width: 45.25rem;
}

.zbh-finans-block {
  margin-bottom: 0;
}

.zbh-finans-block + .zbh-finans-block {
  margin-top: 2.5rem;
}

.zbh-section-title {
  margin: 0 0 1.5rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-brand, #ed1c24);
}

.zbh-finans-block .rh-body-text + .rh-body-text {
  margin-top: 1rem;
}

/* ── Finans Right Column ── */
.zbh-finans-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  flex-shrink: 0;
  width: 29rem;
}

.zbh-finans-image-wrap {
  width: 100%;
  overflow: hidden;
}

.zbh-finans-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ── Ortaklık Yapısı Circle Graphic ── */
.zbh-ortaklik-visual {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  align-self: flex-end;
}

.zbh-ortaklik-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.zbh-ortaklik-label {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3125;
  color: #000;
}

.zbh-ortaklik-percent {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand, #ed1c24);
}

.zbh-ortaklik-line {
  display: block;
  width: 7.5rem;
  height: 1px;
  background: #000;
  margin-top: 0.25rem;
}

.zbh-ortaklik-circle {
  width: 17.5rem;
  height: 17.5rem;
  border-radius: 50%;
  border: 2px solid var(--color-brand, #ed1c24);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zbh-ortaklik-logo {
  width: 4rem;
  height: auto;
}

/* ── Stats / Infographic Section ── */
.zbh-stats-section {
  padding: 1rem 0 1.5rem;
}

.zbh-stats-desktop {
  display: block;
}

.zbh-stats-desktop + .zbh-stats-desktop {
  margin-top: 4rem;
}

.zbh-stats-mobile {
  display: none;
}

.zbh-stats-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Footnote ── */
.zbh-footnote-section {
  padding: 0 0 2rem;
}

.zbh-footnote {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
  color: #666;
}

/* ── Tablet 768px ── */
@media (max-width: 63.99rem) {
  .zbh-hero-inner {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .zbh-hero-table__img {
    width: 13rem;
  }

  .zbh-finans-grid {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }

  .zbh-finans-right {
    width: 22rem;
  }

  .zbh-ortaklik-circle {
    width: 14rem;
    height: 14rem;
  }
}

/* ── Mobile 768px ── */
@media (max-width: 47.999rem) {
  .zbh-hero-banner {
    padding: 0 0 1.5rem;
  }

  .zbh-hero-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .zbh-hero-map {
    border-radius: 0.5rem;
  }

  .zbh-hero-table {
    width: 100%;
  }

  .zbh-hero-table__img {
    width: 100%;
  }

  .zbh-body-section {
    padding: 0 0 1.5rem;
  }

  .zbh-body-section--continued {
    padding: 0 0 1.5rem;
  }

  .zbh-finans-section {
    padding: 0 0 1.5rem;
  }

  .zbh-finans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .zbh-finans-right {
    width: 100%;
    order: -1;
  }

  .zbh-section-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .zbh-finans-block + .zbh-finans-block {
    margin-top: 1.5rem;
  }

  .zbh-ortaklik-visual {
    align-self: center;
    margin-top: 1rem;
  }

  .zbh-ortaklik-circle {
    width: 11rem;
    height: 11rem;
  }

  .zbh-ortaklik-percent {
    font-size: 1.5rem;
  }

  .zbh-stats-desktop + .zbh-stats-desktop {
    display: none;
  }

  .zbh-stats-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
  }
}

/* ============================================================
   VIZYONUMUZ, MISYONUMUZ VE STRATEJILERIMIZ PAGE
   ============================================================ */

/* Shell override – this page scrolls naturally */
.ykb-page .site-shell {
  height: auto;
  max-height: none;
  min-height: 100dvh;
}

.ykb-page .rh-main {
  position: relative;
  isolation: isolate;
}

.ykb-page .rh-main::after {
  display: none;
}

/* ── Hero Section ── */
.vms-hero-section {
  padding: 0 0 2rem;
}

.vms-hero-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.vms-hero-image {
  position: relative;
  flex: 0 0 55%;
  max-width: 55%;
  overflow: visible;
}

.vms-hero-image__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Decorative red dots on the image */
.vms-hero-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brand);
}

.vms-hero-dot--1 {
  top: 18%;
  left: 25%;
}

.vms-hero-dot--2 {
  top: 12%;
  right: 15%;
}

.vms-hero-dot--3 {
  bottom: 30%;
  left: 10%;
}

/* Hero text overlay (right side) */
.vms-hero-text {
  flex: 1 1 auto;
  padding-left: clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vms-hero-text__eyebrow {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.375rem);
  font-weight: 400;
  color: var(--color-brand);
  line-height: 1.3;
}

.vms-hero-text__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 500;
  color: var(--color-brand);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.vms-hero-text__title--bold {
  font-size: clamp(2.25rem, 4.2vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

/* ── Content Sections ── */
.vms-content-section {
  padding: 0 0 2rem;
  background: #ffffff;
}

.vms-content-block {
  margin-bottom: 1.75rem;
}

.vms-content-block:last-child {
  margin-bottom: 0;
}

.vms-section-title {
  margin: 0 0 0.25rem;
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-brand);
}

.vms-section-subtitle {
  margin: 0 0 0.625rem;
  font-size: clamp(0.875rem, 1.15vw, 1.0625rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
  color: var(--color-brand);
}

/* Strategy bullet list */
.vms-strategy-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.vms-strategy-list li {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3125;
  color: #000;
  margin-bottom: 0.35rem;
}

.vms-strategy-list li:last-child {
  margin-bottom: 0;
}

/* ── Desktop ≥ 768px ── */
@media (min-width: 48rem) {
  .vms-hero-section {
    padding: 0 0 2.5rem;
  }

  .vms-hero-inner {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .vms-hero-image {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .vms-hero-dot {
    width: 12px;
    height: 12px;
  }

  .vms-content-section {
    padding: 0 0 2.5rem;
  }

  .vms-content-block {
    margin-bottom: 2rem;
  }
}

/* ── Mobile < 768px ── */
@media (max-width: 47.999rem) {
  .vms-hero-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .vms-hero-image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .vms-hero-text {
    padding-left: 0;
  }

  .vms-hero-dot {
    width: 8px;
    height: 8px;
  }

  .vms-section-title {
    font-size: 1.125rem;
  }

  .vms-section-subtitle {
    font-size: 0.875rem;
  }

  .vms-strategy-list li {
    font-size: 0.875rem;
    line-height: 1.43;
  }
}

/* ============================================================
   ZIRAATIN SEKTOREL KONUMU PAGE
   ============================================================ */

.sk-content-section {
  padding: 0 0 2.5rem;
}

.sk-content-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.sk-chart-col,
.sk-table-col {
  width: 100%;
}

.sk-chart-col picture + picture.mobile-only img {
  margin-top: 2rem;
}

.sk-chart-img,
.sk-table-img {
  display: block;
  width: 100%;
  height: auto;
}

.sk-footnote {
  margin-top: 1.5rem;
}

.sk-footnote p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  color: #6b6969;
}

.sk-footnote sup {
  font-size: 0.5625rem;
  vertical-align: super;
  line-height: 0;
}

/* ── Desktop ≥ 768px ── */
@media (min-width: 48rem) {
  .sk-content-section {
    padding: 0 0 3rem;
  }

  .sk-content-grid {
    flex-direction: row;
    gap: 2.5rem;
  }

  .sk-chart-col {
    flex: 1 1 52%;
    max-width: 52%;
  }

  .sk-table-col {
    flex: 1 1 48%;
    max-width: 48%;
    padding-top: 1rem;
  }

  .sk-footnote {
    margin-top: 1rem;
  }

  .sk-footnote p {
    font-size: 0.8125rem;
  }

  .sk-content-section + .rh-chapter-nav .rh-chapter-btn__text br {
    display: none;
  }
}

/* ── Large desktop ≥ 1024px ── */
@media (min-width: 64rem) {
  .sk-content-grid {
    gap: 3rem;
  }

  .sk-chart-col {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .sk-table-col {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
