@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Nunito+Sans:wght@300;400;600;700&display=swap');

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

:root {
  --red: #D0021B;
  --red-dark: #a00115;
  --black: #111111;
  --white: #ffffff;
  --off-white: #f7f6f4;
  --gray: #e8e6e2;
  --gray-mid: #999;
  --gray-dark: #444;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
  --max-w: 1160px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── LANGUAGE BAR ── */
.lang-bar {
  background: var(--black);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 6px 2rem;
  gap: 4px;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--black);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 72px;
}
.header-logo img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 0;
}
nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--gray);
  transition: var(--transition);
  white-space: nowrap;
}
nav a:first-child { border-left: 1px solid var(--gray); }
nav a:hover,
nav a.active { background: var(--black); color: var(--white); }
nav a.active { background: var(--red); }

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  max-width: 800px;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--red);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: #333; border-color: #333; }

/* ── SECTION WRAPPERS ── */
.section {
  padding: 5rem 2rem;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.section-rule {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 1rem 0 2rem;
}

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--red);
  color: var(--white);
  padding: 3rem 2rem;
}
.stat-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ── QUOTE ── */
.quote-section {
  background: var(--black);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}
.quote-section blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  max-width: 760px;
  margin: 0 auto 1.5rem;
  line-height: 1.35;
}
.quote-section cite {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-style: normal;
}

/* ── NEWS CARDS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  background: var(--gray);
}
.news-card {
  background: var(--white);
  padding: 2rem;
  transition: var(--transition);
}
.news-card:hover { background: var(--off-white); }
.news-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.news-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.news-card-body {
  font-size: 0.9rem;
  color: var(--gray-dark);
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.news-card-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  text-transform: uppercase;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--gray);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 130px; }
.share-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.share-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 1.5px solid var(--gray);
  cursor: pointer;
  transition: var(--transition);
}
.share-item:hover {
  border-color: var(--black);
  background: var(--off-white);
}
.share-icon {
  width: 36px;
  height: 36px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.share-icon.red { background: var(--red); }
.share-icon.green { background: #25D366; }
.share-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.share-text span {
  font-size: 12px;
  color: var(--gray-mid);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo img { height: 36px; width: auto; opacity: 0.6; filter: grayscale(1); }
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--red); }
.footer-copy {
  font-size: 11px;
  text-align: center;
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  border-bottom: 3px solid var(--red);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero .section-label { margin-bottom: 0.75rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
}

/* ── LANG ── */
[data-lang] { display: none; }
html[lang="tr"] [data-lang="tr"] { display: block; }
html[lang="en"] [data-lang="en"] { display: block; }
[data-lang-inline] { display: none; }
html[lang="tr"] [data-lang-inline="tr"] { display: inline; }
html[lang="en"] [data-lang-inline="en"] { display: inline; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav a { padding: 0 12px; font-size: 11px; }
  .header-inner { height: 60px; }
  nav a { height: 60px; }
  .section { padding: 3rem 1.25rem; }
  .stat-num { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  nav { display: none; }
}
