/* =========================================================
   RAİZ VARLIK YATIRIM HOLDİNG — Kurumsal Web Sitesi
   Mobile-first, sıfırdan HTML/CSS
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Marka renkleri — lacivert favicon'dan (#000e6b) örneklendi */
  --navy-950: #04072b;
  --navy-900: #060a3a;
  --navy-800: #081052;
  --navy-700: #000e6b;
  --navy-600: #1a2a8f;
  --navy-100: #e8eaf6;

  --gold-300: #e6cf9c;
  --gold-400: #d9bc7d;
  --gold-500: #c8a45e;
  --gold-600: #a9853f;

  --ink: #131735;
  --muted: #565d7a;
  --bg: #ffffff;
  --bg-soft: #f4f5fb;
  --line: #e4e7f2;

  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;

  --header-h: 72px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 50px -18px rgba(6, 10, 58, 0.18);
  --shadow-card: 0 10px 34px -14px rgba(6, 10, 58, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --section-pad: clamp(4.5rem, 11vw, 8.5rem);
  --container-pad: clamp(1.25rem, 5vw, 2.5rem);
}

@media (min-width: 900px) {
  :root { --header-h: 86px; }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 0.6em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

a { color: var(--navy-700); text-decoration: none; }

ul { padding: 0; margin: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 0.7rem 1.2rem;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-pad); }
.section--soft { background: var(--bg-soft); }
.section--navy {
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(200, 164, 94, 0.14), transparent 55%),
    linear-gradient(155deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #cdd3ee;
}
.section--navy h2, .section--navy h3 { color: #fff; }

/* Section headers */
.section-head { max-width: 640px; margin-bottom: clamp(2.2rem, 6vw, 3.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold-500);
}
.section-head--center .eyebrow::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold-500);
}
.section--navy .eyebrow, .on-dark .eyebrow { color: var(--gold-400); }

.section-title {
  font-size: clamp(1.75rem, 4.6vw, 2.75rem);
  letter-spacing: -0.01em;
}

.section-lead {
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  color: var(--muted);
}
.section--navy .section-lead { color: #b8c0e4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background-color 0.35s, color 0.35s, border-color 0.35s;
}
.btn svg { flex: none; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-500) 60%, var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 14px 30px -12px rgba(200, 164, 94, 0.55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(200, 164, 94, 0.65); }

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-2px); }

.btn--navy {
  background: var(--navy-700);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(0, 14, 107, 0.5);
}
.btn--navy:hover { background: var(--navy-800); transform: translateY(-2px); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-700);
}
.link-more svg { transition: transform 0.3s var(--ease); }
.link-more:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.4s, box-shadow 0.4s, height 0.4s var(--ease);
}
.site-header--solid,
.site-header.is-scrolled {
  background: rgba(6, 10, 58, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(4, 7, 43, 0.9);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 30px; width: auto; }

@media (min-width: 900px) {
  .brand img { height: 36px; }
}

/* Desktop nav */
.main-nav { display: none; }

@media (min-width: 900px) {
  .main-nav { display: flex; align-items: center; gap: 2rem; }
  .main-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.4rem 0;
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--gold-400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
  }
  .main-nav a:hover, .main-nav a.is-active { color: #fff; }
  .main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
  .main-nav .btn { min-height: 44px; padding: 0.55rem 1.4rem; font-size: 0.88rem; }
}

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 120;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s, width 0.4s var(--ease);
}
.nav-toggle span:nth-child(2) { width: 70%; margin-left: auto; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Menü açıkken header, overlay'in üzerinde kalmalı (kapatma butonu erişilebilir olsun) */
body.nav-open .site-header {
  z-index: 130;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

/* Mobile overlay menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 1.5rem) var(--container-pad) 2.5rem;
  background:
    radial-gradient(120% 70% at 100% 0%, rgba(200, 164, 94, 0.16), transparent 55%),
    linear-gradient(165deg, var(--navy-950), var(--navy-700));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.nav-open .mobile-nav { opacity: 1; visibility: visible; }

.mobile-nav ul { display: grid; gap: 0.4rem; }
.mobile-nav ul a {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.72rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6.5vw, 2.1rem);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-nav ul a .idx {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-400);
}
.mobile-nav ul a.is-active, .mobile-nav ul a:hover { color: var(--gold-300); }

.nav-open .mobile-nav ul a { opacity: 1; transform: none; }
.nav-open .mobile-nav li:nth-child(1) a { transition-delay: 0.08s; }
.nav-open .mobile-nav li:nth-child(2) a { transition-delay: 0.14s; }
.nav-open .mobile-nav li:nth-child(3) a { transition-delay: 0.2s; }
.nav-open .mobile-nav li:nth-child(4) a { transition-delay: 0.26s; }
.nav-open .mobile-nav li:nth-child(5) a { transition-delay: 0.32s; }
.nav-open .mobile-nav li:nth-child(6) a { transition-delay: 0.38s; }

.mobile-nav__footer {
  margin-top: auto;
  padding-top: 2rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: #aab2dc;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease) 0.44s, transform 0.5s var(--ease) 0.44s;
}
.nav-open .mobile-nav__footer { opacity: 1; transform: none; }
.mobile-nav__footer a { color: #fff; font-weight: 600; }
.mobile-nav__footer a:hover { color: var(--gold-300); }

@media (min-width: 900px) {
  .mobile-nav { display: none; }
}

/* ---------- Hero (Anasayfa) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 0 7rem;
  overflow: hidden;
  color: #fff;
}

.hero__bg, .hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__bg img { object-fit: cover; object-position: 60% 40%; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 15% 100%, rgba(200, 164, 94, 0.18), transparent 55%),
    linear-gradient(160deg, rgba(4, 7, 43, 0.94) 12%, rgba(0, 14, 107, 0.78) 55%, rgba(4, 7, 43, 0.88) 100%);
}

.hero .container { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.4rem;
}
.hero__eyebrow::before { content: ""; width: 2.4rem; height: 1px; background: var(--gold-400); }

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 7.5vw, 4.3rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  max-width: 15ch;
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-300);
}

.hero__lead {
  max-width: 46ch;
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  color: #c3cbec;
  margin-bottom: 2.2rem;
}

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

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Stats ---------- */
.stats { position: relative; z-index: 3; margin-top: -4.5rem; }
.stats__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 1rem;
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 3rem);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.stat { text-align: center; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--navy-700);
  line-height: 1;
}
.stat__value .suffix { color: var(--gold-500); }
.stat__label {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (min-width: 760px) {
  .stats__card { grid-template-columns: repeat(4, 1fr); }
  .stat + .stat { border-left: 1px solid var(--line); }
}

/* ---------- Hakkımızda teaser ---------- */
.about-grid { display: grid; gap: 2.5rem; align-items: center; }

.about-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(110% 80% at 80% 0%, rgba(200, 164, 94, 0.22), transparent 50%),
    linear-gradient(150deg, var(--navy-900), var(--navy-700));
  padding: clamp(2.2rem, 6vw, 3.2rem);
  color: #c3cbec;
  box-shadow: var(--shadow-soft);
}
.about-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(200, 164, 94, 0.28);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}
.about-panel img { height: 44px; width: auto; margin-bottom: 1.6rem; }
.about-panel__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.4vw, 1.6rem);
  font-style: italic;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 1.4rem;
}
.about-panel__meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.about-copy .section-head { margin-bottom: 1.4rem; }
.about-copy p { color: var(--muted); }

.value-list { display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.value-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink);
}
.value-list li svg { flex: none; margin-top: 0.3rem; color: var(--gold-500); }
.value-list li span small {
  display: block;
  font-weight: 500;
  color: var(--muted);
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.05fr; gap: 4rem; }
}

/* ---------- Hizmet kartları ---------- */
.services-grid { display: grid; gap: 1.2rem; }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.6rem, 4.5vw, 2.2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.service-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: var(--navy-700);
  background: linear-gradient(140deg, var(--navy-100), #fff);
  border: 1px solid var(--line);
}
.service-card__num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold-500);
}
.service-card h3 { font-size: 1.28rem; margin: 0; }
.service-card p { color: var(--muted); font-size: 0.96rem; margin: 0; }

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1080px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- İştirakler ---------- */
.subs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }

.sub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1rem 1.3rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
a.sub-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.sub-card img {
  width: min(120px, 60%);
  aspect-ratio: 1;
  object-fit: contain;
  filter: saturate(0.96);
  transition: transform 0.45s var(--ease);
}
.sub-card:hover img { transform: scale(1.05); }

.sub-card strong { font-size: 0.98rem; color: var(--ink); line-height: 1.3; }
.sub-card small {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
}

@media (min-width: 640px) {
  .subs-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .sub-card { padding: 1.8rem 1.2rem 1.6rem; }
}
@media (min-width: 1080px) {
  .subs-grid { grid-template-columns: repeat(6, 1fr); }
  .sub-card img { width: min(104px, 74%); }
}

/* İştirakler detay sayfası */
.sub-detail-grid { display: grid; gap: 1.2rem; }

.sub-detail {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4.5vw, 2.4rem);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.sub-detail:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

.sub-detail__head { display: flex; align-items: center; gap: 1.2rem; }
.sub-detail__head img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex: none;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px;
}
.sub-detail__head h3 { margin: 0 0 0.2rem; font-size: 1.3rem; }
.sub-detail__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.sub-detail p { color: var(--muted); font-size: 0.97rem; margin: 0; }
.sub-detail .link-more { margin-top: auto; }

@media (min-width: 760px) {
  .sub-detail-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ---------- Haber kartları ---------- */
.news-grid { display: grid; gap: 1.4rem; }

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.news-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.news-card:hover .news-card__media img { transform: scale(1.06); }
.news-card__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(6, 10, 58, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.5rem;
  flex: 1;
}
.news-card h3 { font-size: 1.15rem; margin: 0; }
.news-card p { color: var(--muted); font-size: 0.95rem; margin: 0; flex: 1; }

@media (min-width: 760px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(2.4rem, 7vw, 4.5rem) clamp(1.6rem, 6vw, 4rem);
  text-align: center;
  color: #c3cbec;
  background:
    radial-gradient(100% 140% at 50% -30%, rgba(200, 164, 94, 0.25), transparent 55%),
    linear-gradient(150deg, var(--navy-950), var(--navy-700));
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 164, 94, 0.25);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 4.8vw, 2.5rem);
  max-width: 22ch;
  margin-inline: auto;
}
.cta-band p { max-width: 52ch; margin: 0 auto 1.8rem; }

/* ---------- Page hero (alt sayfalar) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + clamp(3rem, 9vw, 5.5rem)) 0 clamp(3rem, 8vw, 5rem);
  color: #c3cbec;
  background:
    radial-gradient(110% 90% at 90% -20%, rgba(200, 164, 94, 0.18), transparent 55%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-700) 90%);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  background: url("../logos/favico-270x270.png") center / contain no-repeat;
  opacity: 0.08;
  transform: rotate(-8deg);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 6.5vw, 3.4rem);
  margin-bottom: 0.5rem;
}
.page-hero p { max-width: 56ch; font-size: clamp(0.98rem, 2.4vw, 1.1rem); margin: 0; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255, 255, 255, 0.35); }

/* ---------- İçerik blokları (alt sayfalar) ---------- */
.prose { max-width: 68ch; }
.prose p { color: var(--muted); font-size: 1.02rem; }
.prose strong { color: var(--ink); }

.two-col { display: grid; gap: 2.2rem; }
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: none;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.info-card h3 { font-size: 1.15rem; display: flex; align-items: center; gap: 0.7rem; }
.info-card h3 svg { color: var(--gold-500); flex: none; }
.info-card p, .info-card address { color: var(--muted); font-style: normal; margin: 0; font-size: 0.97rem; }
.info-card a { font-weight: 700; }
.info-card a:hover { color: var(--gold-600); }

.card-grid { display: grid; gap: 1.2rem; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* Misyon / Vizyon */
.mv-grid { display: grid; gap: 1.2rem; }
.mv-card {
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 2.6rem);
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: #c3cbec;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(200, 164, 94, 0.22);
  border-radius: calc(var(--radius) - 5px);
}
.mv-card--light {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
}
.mv-card--light::before { border-color: var(--navy-100); }
.mv-card h3 { color: #fff; font-size: 1.35rem; }
.mv-card--light h3 { color: var(--ink); }
.mv-card p { margin: 0; position: relative; }
@media (min-width: 760px) { .mv-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

/* Hizmet detay satırları */
.service-row {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.8rem, 5vw, 2.6rem) 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 0; }
.service-row__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-500);
}
.service-row h3 { font-size: clamp(1.3rem, 3.4vw, 1.7rem); }
.service-row p { color: var(--muted); margin: 0; }
.service-row ul { display: grid; gap: 0.5rem; margin-top: 1rem; }
.service-row ul li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.service-row ul li::before {
  content: "—";
  color: var(--gold-500);
  flex: none;
}
@media (min-width: 900px) {
  .service-row { grid-template-columns: 120px 1fr 1fr; gap: 2.5rem; align-items: start; }
}

/* ---------- İletişim ---------- */
.contact-grid { display: grid; gap: 1.2rem; }
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: clamp(300px, 50vw, 440px); border: 0; }

.contact-form { display: grid; gap: 1rem; }
.form-field { display: grid; gap: 0.45rem; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.form-field input, .form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  min-height: 52px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(0, 14, 107, 0.08);
}
.form-note { font-size: 0.85rem; color: var(--muted); }
@media (min-width: 640px) {
  .contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: #9aa3cf;
  padding: clamp(3.5rem, 9vw, 5.5rem) 0 0;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  gap: 2.4rem;
  padding-bottom: 3rem;
}
.footer-brand img { height: 34px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { max-width: 34ch; margin: 0; }

.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer h4::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 2px;
  background: var(--gold-500);
  margin-top: 0.6rem;
}
.footer-links { display: grid; gap: 0.55rem; }
.footer-links a { color: #9aa3cf; transition: color 0.3s, padding-left 0.3s var(--ease); }
.footer-links a:hover { color: var(--gold-300); padding-left: 4px; }

.footer-contact { display: grid; gap: 0.8rem; }
.footer-contact li { display: flex; gap: 0.8rem; align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: 0.25rem; color: var(--gold-500); }
.footer-contact a { color: #d5daf2; font-weight: 600; }
.footer-contact a:hover { color: var(--gold-300); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 0 calc(1.4rem + env(safe-area-inset-bottom));
  font-size: 0.82rem;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
}

/* ---------- Reveal animasyonları ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll::after { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
