:root {
  --bg: #fbfaf7;
  --text: #262626;
  --muted: #6c6a66;
  --accent: #7b6958;
  --line: #e8e2da;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}


/* =====================================================
   ANA CONTAINER
   ===================================================== */

.container {
  width: 1160px;
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}


/* =====================================================
   HEADER
   ===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: #fbfaf7;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: Georgia, serif;
  font-size: 28px;

  color: var(--text);
  text-decoration: none;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  margin-left: 28px;

  color: var(--text);
  text-decoration: none;
  font-size: 16px;
}

.main-nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;

  background: none;
  border: 0;

  font-size: 26px;
}


/* =====================================================
   HERO
   ===================================================== */

.hero {
  padding: 90px 0;
  background: #f7f2ec;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;

  color: var(--accent);

  font-size: 13px;
  font-weight: 700;
}

.hero h1,
.page-hero h1 {
  margin-top: 12px;
  margin-bottom: 20px;

  font-family: Georgia, serif;
  font-weight: 500;

  font-size: 72px;
  line-height: 1.05;
}

.lead {
  max-width: 760px;

  font-size: 20px;
  color: var(--muted);
}

.actions {
  display: flex;
  margin-top: 30px;
}

.btn {
  display: inline-block;

  margin-right: 14px;
  padding: 13px 20px;

  background: var(--accent);
  color: #ffffff;

  text-decoration: none;

  border-radius: 30px;
}

.btn.ghost {
  background: transparent;
  color: var(--text);

  border: 1px solid var(--line);
}


/* =====================================================
   SAYFA BAŞLIĞI
   ===================================================== */

.page-hero {
  padding: 70px 0 30px;
}

.page-hero h1 {
  font-size: 60px;
}


/* =====================================================
   GENEL İÇERİK
   ===================================================== */

/*
   Kritik bölüm.
   860px sınırı tamamen kaldırıldı.
*/

.prose {
  width: 1160px !important;
  max-width: 100% !important;

  padding-top: 25px;
  padding-bottom: 80px;
}

.prose h2 {
  margin-top: 50px;

  font-family: Georgia, serif;
  font-size: 34px;
}

.prose img {
  max-width: 100%;
  height: auto;
}


/* =====================================================
   ANA SAYFA
   FOTOĞRAF + METİN
   ===================================================== */

.intro-section {
  width: 1160px !important;
  max-width: 100% !important;

  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  margin: 30px auto 60px auto !important;
}


/* FOTOĞRAF */

.intro-image {
  flex: 0 0 400px !important;

  width: 400px !important;
  min-width: 400px !important;
  max-width: 400px !important;

  margin-right: 40px !important;
}

.intro-image img {
  display: block;

  width: 400px !important;
  max-width: 400px !important;
  height: auto;

  border-radius: 6px;
}


/* METİN */

/*
   Kritik değişiklik:
   flex-shrink kapatıldı.
   Metin artık 720px'den daralamaz.
*/

.intro-text {
  flex: 0 0 720px !important;

  width: 720px !important;
  min-width: 720px !important;
  max-width: 720px !important;

  font-size: 15px;
  line-height: 1.75;

  color: #444444;
}

.intro-text p {
  display: block;

  width: 100% !important;
  max-width: none !important;

  margin-top: 0;
  margin-bottom: 20px;
}


/* =====================================================
   KARTLAR
   ===================================================== */

.cards {
  display: flex;
  flex-wrap: wrap;

  margin-left: -11px;
  margin-right: -11px;

  padding-top: 20px;
  padding-bottom: 90px;
}

.card {
  width: calc(33.333% - 22px);

  margin: 11px;
  padding: 28px;

  background: var(--white);

  border: 1px solid var(--line);
  border-radius: 18px;
}

.card a {
  color: var(--text);
  text-decoration: none;
}


/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  padding: 48px 0;

  border-top: 1px solid var(--line);

  color: var(--muted);
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
}

.footer-grid > div {
  width: 31%;
}


/* =====================================================
   TABLET
   ===================================================== */

@media screen and (max-width: 980px) {

  .hero h1,
  .page-hero h1 {
    font-size: 56px;
  }

  .intro-section {
    width: 100% !important;
  }

  .intro-image {
    flex: 0 0 320px !important;

    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;

    margin-right: 30px !important;
  }

  .intro-image img {
    width: 320px !important;
    max-width: 320px !important;
  }

  .intro-text {
    flex: 1 1 auto !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;

    font-size: 14px;
  }
}


/* =====================================================
   MOBİL HEADER
   ===================================================== */

@media screen and (max-width: 850px) {

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;

    position: absolute;

    left: 0;
    right: 0;
    top: 70px;

    padding: 20px;

    background: var(--bg);

    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav a {
    display: block;

    margin: 0;
    padding: 8px 0;
  }

  .card {
    width: calc(50% - 22px);
  }

  .footer-grid {
    display: block;
  }

  .footer-grid > div {
    width: 100%;
    margin-bottom: 25px;
  }
}


/* =====================================================
   MOBİL
   ===================================================== */

@media screen and (max-width: 700px) {

  .container {
    width: auto;
    max-width: none;

    margin-left: 16px;
    margin-right: 16px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .prose {
    width: 100% !important;
  }

  .intro-section {
    display: block !important;

    width: 100% !important;

    margin-top: 20px !important;
    margin-bottom: 45px !important;
  }

  .intro-image {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    margin: 0 0 25px 0 !important;
  }

  .intro-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
  }

  .intro-text {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    font-size: 15px;
    line-height: 1.7;
  }

  .intro-text p {
    width: 100% !important;
    margin-bottom: 18px;
  }

  .card {
    width: calc(100% - 22px);
  }
}