/* ==========================================================================
   Uzman Dyt. Büşra Üstündağ Şahin — Fonksiyonel Beslenme Danışmanlığı
   Tasarım yönü: "Toprak" (krem & koyu yeşil, serif başlıklar)
   ========================================================================== */

:root {
  /* Yüzeyler */
  --cream: #f7f3ec;
  --sand: #efe7d8;
  --white: #fff;
  --photo-bg: #e0d8c6;

  /* Marka renkleri */
  --green: #2e4636;
  --green-hover: #3a5745;
  --terracotta: #a4643c;
  --terracotta-hover: #b5754d;
  --gold: #d8b98a;

  /* Metin */
  --ink: #2b3a30;
  --ink-soft: #3f4a3f;
  --muted: #54604f;
  --muted-2: #5c6657;
  --muted-3: #6b7566;
  --muted-4: #8a9184;
  --nav-ink: #4a5a4f;

  /* Koyu bölüm metni */
  --on-dark: #e9e2d2;
  --on-dark-muted: #bcc7b4;

  /* Kenarlıklar */
  --line: #e3dccd;
  --line-2: #e8e1d2;
  --line-3: #dcd4c2;

  /* Ölçü */
  --gutter: 56px;
  --maxw: 1240px;

  --radius-pill: 999px;
  --shadow-card: 0 4px 18px rgba(46, 70, 54, 0.06);
  --shadow-float: 0 10px 30px rgba(46, 70, 54, 0.14);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* --------------------------------------------------------------------------
   Temel
   -------------------------------------------------------------------------- */

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

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

body {
  margin: 0;
  background: var(--cream);
  font-family: var(--sans);
  color: var(--ink);
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease,
    border-color 0.18s ease;
}

a:hover,
a:focus-visible {
  color: var(--terracotta);
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--green);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-size: 14px;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
  color: var(--cream);
}

.page {
  min-height: 100vh;
  background: var(--cream);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* Butonlar --------------------------------------------------------------- */

.btn {
  display: inline-block;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-align: center;
}

.btn-primary {
  background: var(--green);
  color: var(--cream);
  padding: 16px 30px;
  font-size: 15px;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-hover);
  color: var(--cream);
}

.btn-secondary {
  border: 1.5px solid var(--green);
  color: var(--green);
  padding: 15px 28px;
  font-size: 15px;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--green);
  color: var(--cream);
}

.btn-accent {
  background: var(--terracotta);
  color: var(--white);
  padding: 17px 32px;
  font-size: 15px;
  white-space: nowrap;
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: var(--terracotta-hover);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Başlık / navigasyon
   -------------------------------------------------------------------------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
}

.wordmark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--nav-ink);
}

.site-nav a {
  color: var(--nav-ink);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--terracotta);
}

.header-cta {
  background: var(--green);
  color: var(--cream);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--green-hover);
  color: var(--cream);
}

/* Mobil menü düğmesi — yalnızca JS varken ve dar ekranda görünür */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle:hover {
  background: var(--green);
  color: var(--cream);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before {
  position: absolute;
  top: -5px;
}

.nav-toggle-bars::after {
  position: absolute;
  top: 5px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  padding: 72px var(--gutter) 80px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero .eyebrow {
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 22px;
  text-wrap: pretty;
}

.hero h1 em {
  color: var(--terracotta);
}

.hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 540px;
}

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

.hero-facts {
  display: flex;
  gap: 26px;
  margin-top: 38px;
  font-size: 13px;
  color: var(--muted-3);
}

.hero-facts strong {
  color: var(--green);
  font-size: 15px;
}

.hero-facts-divider {
  width: 1px;
  background: var(--line-3);
  flex: none;
}

.hero-media {
  position: relative;
  justify-self: end;
}

.hero-portrait {
  width: 390px;
  height: 470px;
  border-radius: 195px 195px 20px 20px;
  overflow: hidden;
  background: var(--photo-bg);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.hero-quote {
  position: absolute;
  left: -40px;
  bottom: 28px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-float);
  font-size: 13px;
  line-height: 1.45;
  max-width: 225px;
  margin: 0;
}

.hero-quote--ph {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 96px;
  border: 1.5px dashed #cbbfa6;
  box-shadow: none;
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
}

.hero-quote .mark {
  color: var(--terracotta);
  font-weight: 800;
}

.hero-quote cite {
  display: block;
  margin-top: 6px;
  color: var(--muted-4);
  font-size: 11.5px;
  font-style: normal;
}

/* --------------------------------------------------------------------------
   Uzmanlık alanları (koyu yeşil bölüm)
   -------------------------------------------------------------------------- */

.specialties {
  background: var(--green);
  color: var(--on-dark);
  padding: 52px var(--gutter);
}

.specialties-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 26px;
}

.specialties-head h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  margin: 0;
}

.specialties-head a {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.specialties-head a:hover,
.specialties-head a:focus-visible {
  color: var(--white);
}

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

.specialty-card {
  background: rgba(247, 243, 236, 0.07);
  border: 1px solid rgba(247, 243, 236, 0.18);
  border-radius: 14px;
  padding: 22px;
  color: var(--on-dark);
}

.specialty-card:hover,
.specialty-card:focus-visible {
  background: rgba(247, 243, 236, 0.14);
  color: var(--white);
}

.specialty-card h3 {
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 6px;
}

.specialty-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--on-dark-muted);
}

/* --------------------------------------------------------------------------
   Yaklaşım + danışan süreci
   -------------------------------------------------------------------------- */

.approach {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  padding: 72px var(--gutter);
  align-items: center;
}

.approach .eyebrow {
  margin-bottom: 14px;
}

.approach h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 16px;
  text-wrap: pretty;
}

.approach p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 24px;
}

.approach-link {
  color: var(--terracotta);
  font-size: 14.5px;
  font-weight: 700;
}

.approach-link:hover,
.approach-link:focus-visible {
  color: var(--terracotta-hover);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 22px 24px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--serif);
  font-size: 30px;
  color: var(--terracotta);
  line-height: 1;
  flex: none;
}

.step strong {
  font-size: 15.5px;
}

.step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted-2);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Danışan hikayeleri
   -------------------------------------------------------------------------- */

.stories {
  background: var(--sand);
  padding: 64px var(--gutter);
}

.stories h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 30px;
  text-align: center;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.story {
  background: var(--white);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow-card);
  margin: 0;
}

.story .mark {
  color: var(--terracotta);
  font-size: 26px;
  font-family: var(--serif);
  line-height: 1;
}

.story p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 8px 0 16px;
}

.story figcaption {
  font-size: 12.5px;
  color: var(--muted-4);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Kapanış CTA
   -------------------------------------------------------------------------- */

.cta-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px var(--gutter);
}

.cta {
  background: var(--green);
  border-radius: 22px;
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  color: var(--on-dark);
}

.cta h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--cream);
}

.cta p {
  font-size: 14.5px;
  color: var(--on-dark-muted);
  max-width: 560px;
  line-height: 1.6;
}

.cta .btn-accent {
  padding: 16px 30px;
}

/* Anasayfa varyantı — biraz daha geniş */
.cta--home {
  padding: 48px 52px;
}

.cta--home h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta--home p {
  font-size: 15px;
}

.cta--home .btn-accent {
  padding: 17px 32px;
}

/* Açık kum zeminli varyant */
.cta--sand {
  background: var(--sand);
  color: var(--ink);
}

.cta--sand h2 {
  color: var(--ink);
}

.cta--sand p {
  color: var(--muted-2);
}

.cta--blog {
  padding: 40px 48px;
}

.cta--blog h2 {
  font-size: 28px;
}

/* --------------------------------------------------------------------------
   Alt bilgi
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: var(--muted-4);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--green);
  font-weight: 600;
}

.footer-meta {
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  gap: 22px;
  font-weight: 700;
  flex-wrap: wrap;
}

.footer-nav .is-accent {
  color: var(--terracotta);
}

.footer-nav .is-accent:hover,
.footer-nav .is-accent:focus-visible {
  color: var(--terracotta-hover);
}

/* --------------------------------------------------------------------------
   Yer tutucu sayfalar
   -------------------------------------------------------------------------- */

.placeholder {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px var(--gutter) 120px;
  text-align: center;
}

.placeholder .eyebrow {
  margin-bottom: 16px;
}

.placeholder h1 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 18px;
}

.placeholder p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 auto 32px;
  max-width: 560px;
}

.placeholder-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Duyarlı düzen
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
  :root {
    --gutter: 40px;
  }

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

  .hero-portrait {
    width: 340px;
    height: 410px;
    border-radius: 170px 170px 20px 20px;
  }
}

@media (max-width: 1000px) {
  .site-header {
    flex-wrap: wrap;
  }

  .js .site-nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    font-size: 15px;
    border-top: 1px solid var(--line);
    margin-top: 4px;
    padding-top: 4px;
  }

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

  .js .site-nav a {
    padding: 12px 2px;
  }

  .js .nav-toggle {
    display: inline-flex;
  }

  /* JS yoksa menü her zaman açık kalır */
  .site-nav {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .hero-media {
    justify-self: center;
  }

  .hero-lede {
    max-width: none;
  }

  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 22px;
  }

  .site-header {
    padding: 16px var(--gutter);
  }

  .wordmark {
    font-size: 19px;
  }

  .header-cta {
    padding: 10px 16px;
    font-size: 12.5px;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 52px;
    gap: 48px;
  }

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

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

  .hero-actions .btn {
    flex: 1 1 220px;
  }

  .hero-portrait {
    width: min(300px, 82vw);
    height: auto;
    aspect-ratio: 39 / 47;
    border-radius: 150px 150px 20px 20px;
  }

  .hero-quote {
    position: static;
    max-width: 300px;
    margin: -28px auto 0;
  }

  .specialties {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .specialties-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .specialties-head h2 {
    font-size: 26px;
  }

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

  .approach h2 {
    font-size: 30px;
  }

  .stories {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .stories h2 {
    font-size: 28px;
  }

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

  .cta-wrap {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .cta {
    padding: 32px 26px;
    border-radius: 18px;
  }

  .cta h2 {
    font-size: 26px;
  }

  .btn-accent {
    white-space: normal;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 40px;
  }

  .footer-nav {
    gap: 16px;
  }

  .placeholder {
    padding: 56px var(--gutter) 80px;
  }

  .placeholder h1 {
    font-size: 34px;
  }
}

@media (max-width: 520px) {
  .hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
  }

  .hero-facts-divider {
    display: none;
  }
}

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

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   İÇ SAYFALAR
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Sayfa başlığı ---------------------------------------------------------- */

.page-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px var(--gutter) 40px;
}

.page-head--center {
  text-align: center;
  padding-bottom: 8px;
}

.page-head .eyebrow {
  margin-bottom: 14px;
}

.page-head h1 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
  line-height: 1.14;
  margin: 0 0 12px;
  text-wrap: pretty;
}

.page-head p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 600px;
}

.page-head--center p {
  max-width: 640px;
  margin-inline: auto;
}

/* Yer tutucu blokları (blog görselleri, danışan yorumları) ---------------- */

.ph {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
  background: #e8dfcc;
}

.ph--quote {
  border: 1.5px dashed #cbbfa6;
  background: #fbf8f2;
  border-radius: 16px;
  padding: 26px;
  font-size: 15px;
  min-height: 150px;
}

/* --------------------------------------------------------------------------
   Hakkında
   -------------------------------------------------------------------------- */

.about {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  padding: 72px var(--gutter);
  align-items: start;
}

.about-aside {
  position: sticky;
  top: 110px;
}

.about-portrait {
  width: 100%;
  max-width: 380px;
  height: 460px;
  border-radius: 190px 190px 20px 20px;
  overflow: hidden;
  background: var(--photo-bg);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.credentials {
  margin-top: 20px;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 20px 22px;
  max-width: 380px;
}

.credentials h2 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 12px;
}

.credentials dl {
  display: grid;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

.credentials dt {
  font-weight: 700;
}

.credentials dd {
  margin: 0;
  color: var(--muted-3);
}

.credentials hr {
  height: 1px;
  border: 0;
  background: #eee7d8;
  margin: 0;
  width: 100%;
}

.about-title {
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1.12;
  font-weight: 500;
  margin: 0 0 24px;
  text-wrap: pretty;
}

.about-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  display: grid;
  gap: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.about-stat {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.about-stat b {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--terracotta);
  font-weight: 400;
  display: block;
}

.about-stat span {
  font-size: 12.5px;
  color: var(--muted-3);
  margin-top: 4px;
  display: block;
}

.principles {
  background: var(--sand);
  border-radius: 18px;
  padding: 28px 30px;
}

.principles h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 14px;
}

.principles ol {
  display: grid;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: principle;
}

.principles li {
  display: flex;
  gap: 12px;
}

.principles li::before {
  counter-increment: principle;
  content: "0" counter(principle);
  color: var(--terracotta);
  font-weight: 800;
  flex: none;
}

/* --------------------------------------------------------------------------
   Hizmetler
   -------------------------------------------------------------------------- */

.service-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 30px 32px;
}

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  margin-bottom: 12px;
}

.service h2 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  margin: 0 0 12px;
}

.service-head h2 {
  margin: 0;
}

.badge {
  background: #f2e5d5;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex: none;
}

.service p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.tags li {
  border: 1px solid #ddd5c3;
  border-radius: var(--radius-pill);
  padding: 6px 12px;
}

.process {
  background: var(--green);
  color: var(--on-dark);
  padding: 60px var(--gutter);
}

.process h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--cream);
}

.process-lede {
  font-size: 14.5px;
  color: var(--on-dark-muted);
  margin: 0 0 32px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: pstep;
}

.process-grid li {
  background: rgba(247, 243, 236, 0.07);
  border: 1px solid rgba(247, 243, 236, 0.16);
  border-radius: 16px;
  padding: 24px;
}

.process-grid li::before {
  counter-increment: pstep;
  content: "0" counter(pstep);
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
  display: block;
}

.process-grid strong {
  font-weight: 800;
  font-size: 15px;
  margin: 10px 0 6px;
  color: var(--cream);
  display: block;
}

.process-grid p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--on-dark-muted);
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */

.featured-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 24px;
}

.featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--green);
  border-radius: 22px;
  overflow: hidden;
  color: var(--on-dark);
}

.featured-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chips {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.chip-solid,
.chip-outline {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.chip-solid {
  background: var(--terracotta);
  color: var(--white);
}

.chip-outline {
  border: 1px solid rgba(233, 226, 210, 0.35);
}

.featured h2 {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 14px;
  text-wrap: pretty;
}

.featured p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--on-dark-muted);
  margin: 0 0 18px;
}

.featured .meta {
  color: #8fa08c;
}

.featured-media {
  background: var(--sand);
  min-height: 320px;
  font-size: 20px;
}

.meta {
  font-size: 12.5px;
  color: var(--muted-4);
  font-weight: 700;
}

.post-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--gutter) 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}

.post {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.post-media {
  height: 160px;
  font-size: 15px;
}

.post-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.post-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--terracotta);
}

.post h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}

.post .meta {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   İletişim & SSS
   -------------------------------------------------------------------------- */

.contact {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 64px var(--gutter);
  align-items: start;
}

.contact h1 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.14;
  margin: 0 0 16px;
  text-wrap: pretty;
}

.contact-lede {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 460px;
}

.channels {
  display: grid;
  gap: 14px;
  max-width: 460px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.channel {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex: none;
}

.channel strong {
  font-weight: 800;
  font-size: 14.5px;
  display: block;
}

.channel span {
  font-size: 13.5px;
  color: var(--muted-3);
  margin-top: 2px;
  display: block;
}

.hours {
  margin-top: 26px;
  background: var(--sand);
  border-radius: 16px;
  padding: 22px 24px;
  max-width: 460px;
}

.hours strong {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.hours p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted-2);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--terracotta);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--terracotta);
  font-size: 18px;
  flex: none;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Ön değerlendirme anketi
   -------------------------------------------------------------------------- */

.page--form {
  display: flex;
  flex-direction: column;
}

.page--form .site-header {
  position: static;
}

.form-shell {
  flex: 1;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  padding: 52px 24px 80px;
}

.form-head {
  text-align: center;
  margin-bottom: 30px;
}

.form-head .eyebrow {
  margin-bottom: 12px;
}

.form-head h1 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  margin: 0 0 10px;
  text-wrap: pretty;
}

.form-head p {
  font-size: 15px;
  color: var(--muted-3);
  line-height: 1.6;
}

.progress {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
}

.progress i {
  height: 6px;
  width: 18px;
  border-radius: var(--radius-pill);
  background: #ddd5c3;
  transition: all 0.3s;
}

.progress i.is-done {
  background: var(--terracotta);
}

.progress i.is-current {
  width: 34px;
  background: var(--terracotta);
}

.progress span {
  font-size: 12px;
  color: var(--muted-4);
  font-weight: 700;
  margin-left: 8px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 8px 30px rgba(46, 70, 54, 0.07);
}

.step-panel {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

/* JS varken adımlar tek tek gösterilir; JS yoksa hepsi alt alta görünür */
.js .step-panel[hidden] {
  display: none;
}

.no-js .step-panel + .step-panel {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line-2);
}

.no-js .progress,
.no-js .form-nav {
  display: none;
}

.js .nojs-submit {
  display: none;
}

.nojs-submit {
  margin-top: 24px;
}

.q {
  font-weight: 800;
  font-size: 15px;
  margin: 0 0 14px;
  display: block;
}

.q-hint {
  font-size: 13px;
  color: var(--muted-4);
  margin: -8px 0 16px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

.opt-row {
  display: flex;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

.opt-list {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

.chip-group legend,
.opt-row legend,
.opt-list legend {
  padding: 0;
}

/* Seçim kontrolleri: gerçek checkbox/radio gizlenir, etiket butonlaşır */
.pick input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pick {
  display: block;
}

.pick span {
  display: block;
  cursor: pointer;
  font-family: inherit;
  border: 1.5px solid #d8d2c6;
  background: #fdfcf9;
  color: var(--ink);
  transition: all 0.15s;
}

.pick input:focus-visible + span {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* Yuvarlak çoklu seçim rozetleri */
.pick--chip span {
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
}

/* Eşit genişlikte tekli seçim düğmeleri */
.pick--opt {
  flex: 1;
}

.pick--opt span {
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 8px;
  border-radius: 12px;
  text-align: center;
}

.pick--sm span {
  font-size: 13px;
  padding: 12px 6px;
}

.pick--lg span {
  font-size: 14px;
  font-weight: 700;
  padding: 14px 12px;
}

.pick--chip input:checked + span,
.pick--opt input:checked + span {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

/* Sol hizalı, yuvarlak işaretli liste */
.pick--row span {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.pick--row span::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: none;
  border: 2px solid #c9c2b2;
  background: transparent;
}

.pick--row input:checked + span {
  background: #f2ecdf;
  border-color: var(--terracotta);
}

.pick--row input:checked + span::before {
  border-color: var(--terracotta);
  background: var(--terracotta);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 26px;
}

.two-col .chip-group,
.two-col .opt-row {
  margin-bottom: 0;
}

.two-col .opt-row {
  gap: 8px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #d8d2c6;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: #fdfcf9;
}

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

input:focus,
textarea:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 0;
  border-color: transparent;
}

.fields {
  display: grid;
  gap: 14px;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-2);
  margin-bottom: 6px;
  display: block;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}

.consent input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid #c9c2b2;
  background: transparent;
  flex: none;
  margin: 1px 0 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
}

.consent input:checked {
  background: var(--green);
  border-color: var(--green);
}

.consent input:checked::after {
  content: "✓";
}

.consent input:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.consent span {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted-2);
}

.form-error {
  margin-top: 16px;
  background: #f9ece4;
  border: 1px solid #e0b28f;
  color: #8f4f26;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 14px;
}

.btn-back,
.btn-next {
  cursor: pointer;
  font-family: inherit;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.btn-back {
  font-size: 14px;
  padding: 13px 24px;
  border: 1.5px solid #c9c2b2;
  background: none;
  color: var(--muted-2);
}

.btn-back[hidden] {
  visibility: hidden;
  display: block;
}

.btn-back:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-next {
  font-size: 15px;
  padding: 15px 32px;
  border: none;
  background: var(--green);
  color: var(--cream);
}

.btn-next:hover {
  background: var(--green-hover);
}

.btn-next[disabled] {
  opacity: 0.6;
  cursor: progress;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #9aa093;
  margin-top: 20px;
}

/* Teşekkür & değerlendirme ekranı ---------------------------------------- */

.done {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 30px rgba(46, 70, 54, 0.07);
  margin-top: 12px;
}

.done-head {
  text-align: center;
  margin-bottom: 30px;
}

.done-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin: 0 auto 18px;
}

.done-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 10px;
}

.done-head p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 auto;
  max-width: 460px;
}

.rec {
  background: var(--cream);
  border-radius: 16px;
  padding: 26px 30px;
  margin-bottom: 18px;
}

.rec-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.rec h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 8px;
}

.rec p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.tips {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.tips li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.tips li::before {
  content: "✓";
  color: var(--terracotta);
  font-weight: 800;
  flex: none;
}

.disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: #9aa093;
  margin-bottom: 26px;
}

.done-cta {
  background: var(--green);
  border-radius: 16px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--on-dark);
}

.done-cta h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 4px;
}

.done-cta p {
  font-size: 13.5px;
  color: var(--on-dark-muted);
  line-height: 1.55;
}

.done-cta .btn-accent {
  font-size: 14px;
  padding: 14px 26px;
}

.done-back {
  text-align: center;
  margin-top: 20px;
}

.done-back a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted-4);
}

/* İnce alt bilgi (anket sayfası) ----------------------------------------- */

.site-footer--slim {
  padding: 26px var(--gutter);
  font-size: 12.5px;
}

/* --------------------------------------------------------------------------
   İç sayfalar — duyarlı düzen
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
  .page-head h1 {
    font-size: 40px;
  }

  .about {
    gap: 40px;
  }
}

@media (max-width: 1000px) {
  .about {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .about-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }

  .about-portrait {
    max-width: none;
    height: 400px;
  }

  .credentials {
    margin-top: 0;
    max-width: none;
  }

  .service-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .featured-media {
    min-height: 200px;
    order: -1;
  }

  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-card {
    padding: 30px 26px;
  }
}

@media (max-width: 720px) {
  .page-head {
    padding-top: 44px;
    padding-bottom: 28px;
  }

  .page-head h1 {
    font-size: 32px;
  }

  .about-aside {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    height: auto;
    aspect-ratio: 38 / 46;
    border-radius: 170px 170px 20px 20px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .service {
    padding: 24px 22px;
  }

  .service h2 {
    font-size: 23px;
  }

  .service-head {
    flex-direction: column;
    gap: 10px;
  }

  .process {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .process h2 {
    font-size: 26px;
  }

  .process-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .featured-body {
    padding: 30px 26px;
  }

  .featured h2 {
    font-size: 26px;
  }

  .contact h1 {
    font-size: 32px;
  }

  .contact,
  .service-grid {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cta--blog,
  .cta--home {
    padding: 32px 26px;
  }

  .cta--home h2,
  .cta--blog h2 {
    font-size: 26px;
  }

  /* Anket */
  .form-shell {
    padding: 36px 18px 64px;
  }

  .form-head h1 {
    font-size: 29px;
  }

  .form-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .opt-row {
    flex-wrap: wrap;
  }

  .pick--opt {
    flex: 1 1 calc(50% - 5px);
  }

  .two-col,
  .field-pair {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-nav {
    flex-direction: row-reverse;
  }

  .btn-next {
    flex: 1;
    padding: 15px 20px;
  }

  .btn-back {
    padding: 13px 18px;
  }

  .done {
    padding: 30px 22px;
  }

  .done-title {
    font-size: 28px;
  }

  .rec {
    padding: 22px 20px;
  }

  .done-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
  }
}
