/* ================================================================
   Açık Hava Etkinlik Takvimi — styles.css
   Concept: "Altın Saat" · Golden Hour over Anatolia
   Palette: Warm-Dark → Ember → Amber → Cream  (all warm-toned)
   ================================================================ */

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

/* ----------------------------------------------------------------
   Design Tokens
   ---------------------------------------------------------------- */
:root {
  /* --- Core Warm Palette --- */
  --ink:        #1C0A03;   /* warm near-black  — header, footer, hero bg  */
  --ink-soft:   #2D1205;   /* slightly lighter dark — card hovers, overlays */
  --ember:      #C2410C;   /* terracotta / ember — primary accent           */
  --ember-dk:   #9A3412;   /* deeper ember — hover states                   */
  --ember-lt:   #FFEDD5;   /* pale ember — accent backgrounds               */
  --amber:      #D97706;   /* saffron gold — highlights, CTAs, borders       */
  --amber-dk:   #B45309;   /* deeper amber — hover                          */
  --amber-lt:   #FEF3C7;   /* pale amber — subtle tints                     */
  --teal:       #0D9488;   /* Aegean teal — cool counterpoint (used sparingly)*/
  --teal-lt:    #CCFBF1;
  --cream:      #FEFCF8;   /* warm off-white — page background              */
  --sand:       #F5E8D4;   /* warm sand — alternate section bg              */
  --white:      #FFFFFF;

  /* --- Text --- */
  --tx1: #1C0A03;          /* headlines */
  --tx2: #57534E;          /* body copy  */
  --tx3: #A8A29E;          /* muted / captions */

  /* --- Borders --- */
  --bd:   #E7D7C1;         /* warm border */
  --bd-lt:#F0E8DA;         /* lighter border */

  /* --- Season Accents --- */
  --s-spring: #059669;   --s-spring-lt: #D1FAE5;
  --s-summer: #EA580C;   --s-summer-lt: #FFEDD5;
  --s-autumn: #C2410C;   --s-autumn-lt: #FFEDD5;
  --s-winter: #2563EB;   --s-winter-lt: #DBEAFE;

  /* --- Accent alias (overridden per season body class) --- */
  --ac:    var(--ember);
  --ac-dk: var(--ember-dk);
  --ac-lt: var(--ember-lt);

  /* --- Typography --- */
  --ff-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* --- Spacing (8-pt grid) --- */
  --sp-1:  0.25rem;   /*  4px */
  --sp-2:  0.5rem;    /*  8px */
  --sp-3:  0.75rem;   /* 12px */
  --sp-4:  1rem;      /* 16px */
  --sp-5:  1.5rem;    /* 24px */
  --sp-6:  2rem;      /* 32px */
  --sp-7:  3rem;      /* 48px */
  --sp-8:  4rem;      /* 64px */
  --sp-9:  6rem;      /* 96px */

  /* --- Layout --- */
  --max-w:  1160px;
  --hdr-h:  68px;
  --r:      6px;
  --r-md:   12px;
  --r-lg:   20px;

  /* --- Shadows (warm-tinted) --- */
  --sh-sm:  0 1px 4px rgba(28, 10, 3, 0.08);
  --sh-md:  0 4px 20px rgba(28, 10, 3, 0.13);
  --sh-lg:  0 16px 56px rgba(28, 10, 3, 0.18);
  --sh-amber: 0 6px 24px rgba(194, 65, 12, 0.32);

  /* --- Transitions --- */
  --t:      200ms ease;
  --t-slow: 380ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------------------
   Season Page Themes
   ---------------------------------------------------------------- */
body.season-bahar    { --ac: var(--s-spring); --ac-dk: #047857; --ac-lt: var(--s-spring-lt); }
body.season-yaz      { --ac: var(--s-summer); --ac-dk: #C2410C; --ac-lt: var(--s-summer-lt); }
body.season-sonbahar { --ac: var(--s-autumn); --ac-dk: var(--ember-dk); --ac-lt: var(--s-autumn-lt); }
body.season-kis      { --ac: var(--s-winter); --ac-dk: #1D4ED8; --ac-lt: var(--s-winter-lt); }

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.74;
  color: var(--tx2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

a {
  color: var(--ac);
  text-decoration: none;
  transition: color var(--t);
}
a:hover { color: var(--ac-dk); text-decoration: underline; }

/* ----------------------------------------------------------------
   Typography
   ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  color: var(--tx1);
  line-height: 1.22;
  margin-bottom: var(--sp-4);
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: var(--sp-4); }

.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: var(--tx2);
}

blockquote {
  border-left: 4px solid var(--amber);
  padding: var(--sp-4) var(--sp-5);
  margin: var(--sp-6) 0;
  background: var(--amber-lt);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
}

/* ----------------------------------------------------------------
   Utilities
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.text-center { text-align: center; }
.text-muted  { color: var(--tx3); }
.mt-sm  { margin-top: var(--sp-2); }
.mt-md  { margin-top: var(--sp-4); }
.mt-lg  { margin-top: var(--sp-5); }
.mt-xl  { margin-top: var(--sp-6); }
.mb-md  { margin-bottom: var(--sp-4); }
.mb-lg  { margin-bottom: var(--sp-5); }
.mb-xl  { margin-bottom: var(--sp-6); }
.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;
}

/* ----------------------------------------------------------------
   Skip Link & Focus
   ---------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--ink);
  color: var(--amber);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r);
  z-index: 10000;
  font-weight: 600;
  font-size: 0.9rem;
}
.skip-link:focus { top: var(--sp-2); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--hdr-h);
  background: var(--ink);
  /* Amber bottom glow line */
  box-shadow: 0 1px 0 var(--ember), 0 4px 24px rgba(28,10,3,0.5);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-4);
}

/* --- Logo --- */
.site-logo {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 30px;
  text-decoration: none;
}
/* Sun icon */
.site-logo::before {
  content: "◉";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--amber);
  font-style: normal;
  line-height: 1;
}
.site-logo:hover {
  color: #fff;
  text-decoration: none;
}
.site-logo span {
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  font-size: 0.8em;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-list li { position: relative; }

.nav-list > li > a,
.nav-list > li > .nav-dropdown-toggle {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.72);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--r);
  transition: background var(--t), color var(--t);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--ff-body);
}
.nav-list > li > a:hover,
.nav-list > li > .nav-dropdown-toggle:hover,
.nav-list > li > a[aria-current="page"],
.nav-list > li > a.active,
.nav-list > li > .nav-dropdown-toggle.active {
  background: rgba(217,119,6,0.18);
  color: var(--amber);
  text-decoration: none;
}

/* Dropdown chevron */
.nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 5px;
}
.nav-dropdown-toggle::after {
  content: "";
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--t);
  margin-top: 1px;
  flex-shrink: 0;
}
.nav-dropdown.open .nav-dropdown-toggle::after { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--bd-lt);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: var(--sp-2) 0;
  z-index: 200;
  overflow: hidden;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }

/* Desktop: smooth fade+slide on hover */
@media (min-width: 901px) {
  .nav-dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }
  .nav-dropdown:hover > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-dropdown:hover > .nav-dropdown-toggle::after { transform: rotate(180deg); }
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px var(--sp-5);
  color: var(--tx2);
  font-size: 0.9rem;
  border-radius: 0;
  transition: background var(--t), color var(--t);
}
.nav-dropdown-menu a:hover {
  background: var(--ember-lt);
  color: var(--ember);
  text-decoration: none;
}

/* --- Mobile hamburger --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(217,119,6,0.3);
  border-radius: var(--r);
  cursor: pointer;
  padding: 10px;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--t), opacity var(--t);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Responsive nav --- */
@media (max-width: 900px) {
  .site-header .container { justify-content: flex-start; }
  .menu-toggle { display: flex; margin-left: auto; }
  .main-nav { display: block; }

  .nav-list {
    display: none;
    position: absolute;
    top: var(--hdr-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-soft);
    border-top: 1px solid rgba(217,119,6,0.25);
    box-shadow: 0 12px 40px rgba(28,10,3,0.5);
    padding: var(--sp-4);
    z-index: 999;
  }
  .nav-list.open { display: flex; }

  .nav-list > li > a,
  .nav-list > li > .nav-dropdown-toggle {
    padding: 12px var(--sp-4);
    width: 100%;
    text-align: left;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--r);
    padding: 0;
    margin: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease, padding 280ms ease, margin 280ms ease;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 260px;
    padding: var(--sp-1) 0;
    margin: 4px 0;
  }
  .nav-dropdown-menu a {
    color: rgba(255,255,255,0.65);
    padding: 10px var(--sp-7);
  }
  .nav-dropdown-menu a:hover {
    background: rgba(217,119,6,0.15);
    color: var(--amber);
  }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(4rem, 9vw, 7rem);
  background: var(--ink);
  overflow: hidden;
  text-align: center;
}

/* Large sunburst decoration — CSS conic-gradient */
.hero::before {
  content: "";
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 680px;
  height: 680px;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(217,119,6,0.09) 0deg,    transparent 22deg,
    rgba(194,65,12,0.06) 44deg,   transparent 66deg,
    rgba(217,119,6,0.07) 88deg,   transparent 110deg,
    rgba(194,65,12,0.05) 132deg,  transparent 154deg,
    rgba(217,119,6,0.09) 176deg,  transparent 198deg,
    rgba(194,65,12,0.06) 220deg,  transparent 242deg,
    rgba(217,119,6,0.07) 264deg,  transparent 286deg,
    rgba(194,65,12,0.05) 308deg,  transparent 330deg,
    rgba(217,119,6,0.09) 352deg,  transparent 360deg
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Warm ambient glow */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 0% 100%, rgba(194,65,12,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 0%,  rgba(217,119,6,0.10) 0%, transparent 55%);
  pointer-events: none;
}

/* Texture variants */
.texture-wind     { background: var(--ink); }
.texture-flower   { background: #0A1C0E; }
.texture-harvest  { background: #1C0A00; }
.texture-snow     { background: #060F1C; }

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(217,119,6,0.15);
  border: 1px solid rgba(217,119,6,0.3);
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: var(--sp-5);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 24px rgba(28,10,3,0.6);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero .lead {
  color: rgba(255,255,255,0.68);
  max-width: 640px;
  margin: 0 auto var(--sp-6);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

/* Decorative amber rule */
.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin: 0 auto;
  max-width: 200px;
}
.hero-rule::before,
.hero-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.hero-rule span {
  color: var(--amber);
  font-size: 1.1rem;
  line-height: 1;
}

/* ================================================================
   SECTION BASE
   ================================================================ */
.section {
  padding: clamp(2.5rem, 7vw, 5.5rem) 0;
}

/* Amber underline on section h2 */
.section .container > h2 {
  position: relative;
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.section .container > h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--amber));
  border-radius: 2px;
}

.section .container > p:first-of-type {
  max-width: 700px;
  margin-bottom: var(--sp-6);
}

/* ================================================================
   SEASON TIPS
   ================================================================ */
.section-tips {
  background: var(--white);
}

/* Season tab buttons */
.season-switcher,
.switcher {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin: var(--sp-5) 0 var(--sp-5);
}

.switcher-btn {
  padding: 9px 20px;
  border: 2px solid var(--bd);
  border-radius: 999px;
  background: var(--cream);
  color: var(--tx2);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.switcher-btn:hover {
  border-color: var(--ember);
  color: var(--ember);
  background: var(--ember-lt);
}
.switcher-btn.active {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
  box-shadow: var(--sh-amber);
}

/* Per-season active colors */
.switcher-btn[data-switcher="bahar"].active  { background: var(--s-spring); border-color: var(--s-spring); box-shadow: 0 4px 16px rgba(5,150,105,0.35); }
.switcher-btn[data-switcher="yaz"].active    { background: var(--s-summer); border-color: var(--s-summer); box-shadow: 0 4px 16px rgba(234,88,12,0.35); }
.switcher-btn[data-switcher="sonbahar"].active{ background: var(--s-autumn); border-color: var(--s-autumn); box-shadow: var(--sh-amber); }
.switcher-btn[data-switcher="kis"].active    { background: var(--s-winter); border-color: var(--s-winter); box-shadow: 0 4px 16px rgba(37,99,235,0.35); }

/* Tip panels */
.tip-panels {
  border: 1px solid var(--bd-lt);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream);
}

.tip-panel { display: none; }
.tip-panel.active { display: block; }

.tip-panel {
  padding: var(--sp-6) clamp(var(--sp-5), 4vw, var(--sp-7));
}
@media (max-width: 600px) { .tip-panel { padding: var(--sp-5); } }

.tip-panel h3 {
  color: var(--ac, var(--ember));
  margin-bottom: var(--sp-3);
}

.tip-panel > p {
  max-width: 680px;
  margin-bottom: var(--sp-5);
}

.tip-panel ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-3);
  list-style: none;
  padding: 0;
}

.tip-panel li {
  position: relative;
  padding: 12px var(--sp-4) 12px 42px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--bd-lt);
  color: var(--tx2);
  font-size: 0.9rem;
  line-height: 1.55;
  transition: border-color var(--t);
}
.tip-panel li:hover { border-color: var(--ember); }
.tip-panel li::before {
  content: "✦";
  position: absolute;
  left: 14px;
  top: 13px;
  color: var(--amber);
  font-size: 0.75rem;
  line-height: 1;
}

/* Tip card variant */
.tip-card {
  background: var(--ember-lt);
  border-left: 4px solid var(--ember);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-5);
  margin-bottom: var(--sp-4);
}
.tip-card h4 { color: var(--ember-dk); margin-bottom: var(--sp-2); }

/* ================================================================
   CARD GRID
   ================================================================ */
.section-cards {
  background: var(--cream);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}

.card {
  background: var(--white);
  border: 1px solid var(--bd-lt);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}

/* Ember left-edge accent on hover */
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--amber), var(--ember));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t-slow);
}
.card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
  border-color: var(--bd);
}
.card:hover::before { transform: scaleY(1); }

@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--ember-lt), var(--amber-lt));
  border: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--ember);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--sp-3);
  color: var(--tx1);
}

.card p {
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: var(--sp-5);
  color: var(--tx2);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ember);
  font-weight: 600;
  font-size: 0.875rem;
  align-self: flex-start;
  padding: 8px 16px;
  background: var(--ember-lt);
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all var(--t);
  text-decoration: none;
}
.card-link::after { content: "→"; }
.card-link:hover {
  background: var(--ember);
  color: #fff;
  gap: 12px;
  text-decoration: none;
}

/* ================================================================
   EDITORIAL / GENERAL CONTENT SECTION
   ================================================================ */
.section-editorial {
  background: var(--sand);
}

.section-editorial h2 { color: var(--tx1); }

.section-editorial h3 {
  color: var(--ember);
  margin-top: var(--sp-7);
  font-size: 1.3rem;
}
.section-editorial h3:first-child { margin-top: 0; }

.section-editorial p { line-height: 1.82; }

.image-text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
  margin: var(--sp-6) 0;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--bd-lt);
}
.image-text-block.reverse { direction: rtl; }
.image-text-block.reverse > * { direction: ltr; }

.image-text-block img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--r-md);
  background: var(--bd-lt);
}
.image-text-block .text-side h3 { margin-top: 0; }

@media (max-width: 768px) {
  .image-text-block {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .image-text-block img { height: 200px; }
}

/* ================================================================
   RELATED LINKS
   ================================================================ */
.section-related {
  background: var(--cream);
}

.related-links { list-style: none; padding: 0; }

.related-links a {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--bd-lt);
  color: var(--tx2);
  font-size: 0.9375rem;
  margin-bottom: var(--sp-2);
  transition: all var(--t);
}
.related-links a::before {
  content: "→";
  color: var(--ember);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--t);
}
.related-links a:hover {
  background: var(--ember-lt);
  color: var(--ember-dk);
  border-color: var(--ember);
  text-decoration: none;
}
.related-links a:hover::before { transform: translateX(4px); }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--bd-lt);
  padding: var(--sp-3) 0;
  font-size: 0.85rem;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 0 var(--sp-5);
  max-width: var(--max-w);
  margin: 0 auto;
}
.breadcrumb li::after {
  content: "/";
  margin-left: 4px;
  color: var(--tx3);
}
.breadcrumb li:last-child::after { content: none; }
.breadcrumb a { color: var(--tx3); }
.breadcrumb a:hover { color: var(--ember); }
.breadcrumb [aria-current="page"] {
  color: var(--tx2);
  font-weight: 500;
}

/* ================================================================
   CONTENT PAGES
   ================================================================ */
.content-page {
  padding: var(--sp-7) 0 var(--sp-9);
}
.content-page .container { max-width: 840px; }
.content-page h1 { margin-bottom: var(--sp-5); }

.content-page h2 {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 2px solid var(--bd-lt);
  color: var(--ember);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}
.content-page h3 { margin-top: var(--sp-6); }

.content-page ul,
.content-page ol {
  margin: var(--sp-4) 0 var(--sp-5) var(--sp-6);
  color: var(--tx2);
  list-style: disc;
}
.content-page ol { list-style: decimal; }
.content-page li { margin-bottom: var(--sp-2); list-style: inherit; }
.content-page li::marker { color: var(--ember); }

/* related-links inside content-page: no bullet markers, only arrow ::before */
.content-page .related-links ul,
.content-page .related-links li { list-style: none; margin-left: 0; }
.content-page .related-links ul { margin: 0; padding: 0; }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list {
  max-width: 840px;
  margin: var(--sp-6) auto 0;
}

.faq-item {
  border: 1px solid var(--bd-lt);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-2);
  overflow: hidden;
  transition: box-shadow var(--t);
}
.faq-item.open {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px var(--ember-lt);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tx1);
  text-align: left;
  transition: background var(--t), color var(--t);
}
@media (max-width: 600px) { .faq-question { padding: var(--sp-4) var(--sp-5); } }

.faq-question:hover { background: var(--ember-lt); }
.faq-item.open .faq-question {
  background: var(--ember-lt);
  color: var(--ember-dk);
}

.faq-question::after {
  content: "+";
  font-family: var(--ff-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ember);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--t);
}
.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--sp-6);
  border-top: 0px solid var(--bd-lt);
  background: var(--white);
  transition: max-height 300ms ease, padding 300ms ease, border-top-width 300ms ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: var(--sp-5) var(--sp-6);
  border-top-width: 1px;
}

/* ================================================================
   CONTACT FORM
   ================================================================ */

/* Cards grid — 4 contact items in 2x2 on desktop */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}
.contact-cards-grid .contact-item {
  border: 1px solid var(--bd-lt);
  border-bottom: 1px solid var(--bd-lt);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  background: var(--white);
}
.contact-cards-grid .contact-item:last-of-type { border-bottom: 1px solid var(--bd-lt); }
@media (max-width: 520px) { .contact-cards-grid { grid-template-columns: 1fr; } }

/* Centered form wrapper */
.contact-form-centered {
  max-width: 560px;
  margin: var(--sp-7) auto 0;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--bd-lt);
}
.contact-form-centered h2 {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

/* Legacy: keep .contact-grid working on pages that may still use it */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-7);
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--bd-lt);
}
.contact-info h3 {
  color: var(--ember);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-2);
}
.contact-info h3:first-child { margin-top: 0; }

.form-group { margin-bottom: var(--sp-5); }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--tx1);
}
.form-group .hint {
  font-size: 0.8rem;
  color: var(--tx3);
  margin-bottom: 6px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 11px var(--sp-4);
  border: 2px solid var(--bd);
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--tx1);
  background: var(--cream);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 4px var(--ember-lt);
  outline: none;
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input.error,
.form-group textarea.error { border-color: #DC2626; }

.form-error {
  color: #DC2626;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}
.form-group.has-error .form-error { display: block; }

.consent-group { display: flex; align-items: flex-start; gap: var(--sp-3); }
.consent-group input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px; height: 18px;
  accent-color: var(--ember);
}
.consent-group label {
  font-weight: 400;
  font-size: 0.875rem;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 13px 28px;
  border: none;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
}
.btn-primary {
  background: var(--ember);
  color: #fff;
  box-shadow: var(--sh-amber);
}
.btn-primary:hover {
  background: var(--ember-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(194,65,12,0.45);
  text-decoration: none;
  color: #fff;
}
.btn-primary:active { transform: translateY(0); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

.form-status {
  margin-top: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  display: none;
}
.form-status.success {
  display: block;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #6EE7B7;
}
.form-status.error {
  display: block;
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

/* Honeypot */
.ohnohoney {
  position: absolute; left: -9999px; opacity: 0;
  height: 0; width: 0; overflow: hidden;
}

/* ================================================================
   SITEMAP PAGE
   ================================================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.sitemap-section {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  border: 1px solid var(--bd-lt);
}
.sitemap-section h3 {
  font-size: 1.05rem;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 3px solid var(--ember);
  color: var(--tx1);
}
.sitemap-section ul { list-style: none; padding: 0; }
.sitemap-section li { margin-bottom: var(--sp-2); }
.sitemap-section a { font-size: 0.9rem; color: var(--tx2); }
.sitemap-section a:hover { color: var(--ember); }

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.legal-page h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.legal-page h2 { font-size: 1.3rem; }
.legal-page p, .legal-page li { font-size: 0.9375rem; }

/* ================================================================
   CONTENT IMAGES
   ================================================================ */
.content-image { margin: var(--sp-6) 0; border-radius: var(--r-lg); overflow: hidden; }
.content-image img { width: 100%; height: auto; display: block; }
.content-image figcaption {
  font-size: 0.8rem;
  color: var(--tx3);
  padding: var(--sp-2) var(--sp-2) 0;
  font-style: italic;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: clamp(3rem, 7vw, 5rem) 0 var(--sp-6);
  margin-top: clamp(3rem, 7vw, 5rem);
  position: relative;
}

/* Warm gradient top border */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--ember) 0%,
    var(--amber) 33%,
    var(--teal)  66%,
    var(--ember) 100%
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-7);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about { grid-column: 1; }
}

.footer-about h3 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--amber);
  margin-bottom: var(--sp-4);
}
.footer-about p {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  line-height: 1.72;
}

/* Column headings (h3 or h4) */
.footer-col h3,
.footer-col h4,
.footer-section h4 {
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
  font-weight: 700;
}

.footer-col ul,
.footer-section ul { list-style: none; padding: 0; }

.footer-col li,
.footer-section li { margin-bottom: 9px; }

.footer-col a,
.footer-section a {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  transition: color var(--t);
  text-decoration: none;
}
.footer-col a:hover,
.footer-section a:hover { color: var(--amber); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-5) var(--sp-5) 0;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a {
  color: rgba(255,255,255,0.3);
  transition: color var(--t);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); text-decoration: none; }

.footer-legal-links {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

/* ================================================================
   COOKIE BANNER
   ================================================================ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink-soft);
  border-top: 3px solid var(--ember);
  box-shadow: 0 -8px 40px rgba(28,10,3,0.5);
  padding: var(--sp-5);
  z-index: 9999;
}
.cookie-banner.visible { display: block; }

.cookie-banner-inner { max-width: var(--max-w); margin: 0 auto; }

.cookie-banner h3 {
  color: #fff;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-4);
}
.cookie-banner p a { color: var(--amber); }

.cookie-actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t);
}
.cookie-btn-accept { background: var(--ember); color: #fff; border-color: var(--ember); }
.cookie-btn-accept:hover { background: var(--ember-dk); border-color: var(--ember-dk); }
.cookie-btn-reject { background: transparent; color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.2); }
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.45); color: #fff; }
.cookie-btn-settings { background: transparent; color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.1); }
.cookie-btn-settings:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }

.cookie-settings {
  display: none;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-settings.visible { display: block; }

.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cookie-setting-row:last-child { border-bottom: none; }
.cookie-setting-info h4 {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  margin-bottom: 2px;
}
.cookie-setting-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

/* Toggle switch */
.toggle-switch { position: relative; width: 48px; height: 26px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; cursor: pointer; inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 26px;
  transition: background var(--t);
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--t);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.toggle-switch input:checked + .toggle-slider { background: var(--ember); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.35; cursor: not-allowed; }

.cookie-save-row { margin-top: var(--sp-4); text-align: right; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp var(--t-slow) both; }
.fade-in-up:nth-child(2) { animation-delay: 80ms; }
.fade-in-up:nth-child(3) { animation-delay: 160ms; }
.fade-in-up:nth-child(4) { animation-delay: 240ms; }
.fade-in-up:nth-child(5) { animation-delay: 320ms; }
.fade-in-up:nth-child(6) { animation-delay: 400ms; }

/* ================================================================
   PRINT
   ================================================================ */
@media print {
  .site-header, .site-footer, .cookie-banner, .menu-toggle { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* ================================================================
   CLASS ALIASES — compatibility for pages using alternate names
   ================================================================ */

/* Footer container wrappers used on inner pages */
.footer-container > .footer-grid { /* already handled by .footer-grid */ }
.footer-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

/* .footer-column → alias for .footer-col */
.footer-column {
  /* same rules as .footer-col columns */
}
.footer-column h3,
.footer-column h4 {
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
  font-weight: 700;
}
.footer-column.footer-about h3 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--amber);
}
.footer-column.footer-about p {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  line-height: 1.72;
}
.footer-column ul { list-style: none; padding: 0; }
.footer-column li { margin-bottom: 9px; }
.footer-column a {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  transition: color var(--t);
  text-decoration: none;
}
.footer-column a:hover { color: var(--amber); text-decoration: none; }

/* .footer-columns → grid container alias */
.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  margin: 0 auto var(--sp-7);
  max-width: var(--max-w);
  padding: 0 var(--sp-5);
  width: 100%;
}
@media (max-width: 900px) {
  .footer-columns { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .footer-columns .footer-about,
  .footer-columns .footer-column:first-child { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-columns { grid-template-columns: 1fr; }
  .footer-columns .footer-about,
  .footer-columns .footer-column:first-child { grid-column: 1; }
}

/* ================================================================
   SEASON CARDS — mevsimler.html
   ================================================================ */
.season-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-5);
  margin: var(--sp-6) 0;
}

.season-card {
  background: var(--white);
  border: 1px solid var(--bd-lt);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.season-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--amber));
}
.season-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.season-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--sp-3);
}
.season-card h3 a {
  color: var(--tx1);
}
.season-card h3 a:hover { color: var(--ember); text-decoration: none; }
.season-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .season-cards { grid-template-columns: 1fr; }
}

/* ================================================================
   REGION CARDS — bolgeler.html
   ================================================================ */
.region-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-5);
  margin: var(--sp-6) 0;
}

.region-card {
  background: var(--white);
  border: 1px solid var(--bd-lt);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.region-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}
.region-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.region-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--sp-3);
}
.region-card h3 a { color: var(--tx1); }
.region-card h3 a:hover { color: var(--ember); text-decoration: none; }
.region-card p {
  font-size: 0.9rem;
  color: var(--tx2);
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .region-cards { grid-template-columns: 1fr; }
}

/* ================================================================
   CONTENT-PAGE: article wrapper centering
   Pages using <article> directly inside .content-page
   ================================================================ */
.content-page > article {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

/* ================================================================
   CONTACT DETAILS — iletisim.html
   ================================================================ */

/* Contact item — icon + text row */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--bd-lt);
}
.contact-item:last-of-type { border-bottom: none; }

.contact-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--ember) 0%, var(--amber) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.contact-item-icon svg { width: 22px; height: 22px; }

.contact-item-body { flex: 1; min-width: 0; }
.contact-item-body h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--tx3);
  font-family: var(--ff-body);
  margin-bottom: 4px;
}
.contact-item-body p {
  font-size: 0.9375rem;
  color: var(--tx1);
  margin-bottom: 2px;
  font-weight: 500;
}
.contact-item-body a {
  color: var(--ember);
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
  overflow-wrap: break-word;
}
.contact-item-body a:hover { text-decoration: underline; }
.contact-item-note {
  font-size: 0.8rem !important;
  color: var(--tx3) !important;
  font-weight: 400 !important;
}

/* Legacy contact-detail (keep for backwards compat) */
.contact-detail {
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--bd-lt);
}
.contact-detail:last-child { border-bottom: none; margin-bottom: 0; }
.contact-detail h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tx3);
  font-family: var(--ff-body);
  margin-bottom: var(--sp-2);
}
.contact-detail p { margin-bottom: var(--sp-2); font-size: 0.9375rem; }
.contact-detail a { color: var(--ember); font-weight: 500; }

.contact-note {
  background: var(--amber-lt);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-4) var(--sp-5);
  margin-top: var(--sp-5);
}
.contact-note h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--amber-dk);
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--ff-body);
}
.contact-note p { font-size: 0.875rem; margin-bottom: 0; }

/* form-group-checkbox */
.form-group-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-weight: 400;
  font-size: 0.875rem;
  cursor: pointer;
}
.form-group-checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--ember);
}

/* Contact form wrapper */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--bd-lt);
}
.contact-form-wrapper h2 { margin-bottom: var(--sp-3); }

/* About section */
.about-section {
  margin-bottom: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--bd-lt);
}
.about-section:last-child { border-bottom: none; }

/* Legal section */
.legal-section {
  margin-bottom: var(--sp-6);
}
.legal-section h2 {
  color: var(--ember);
}
.legal-updated {
  font-size: 0.875rem;
  color: var(--tx3);
  margin-bottom: var(--sp-6);
}

/* Cookie banner alternative structure (iletisim, hakkimizda, etc.) */
.cookie-content { max-width: var(--max-w); margin: 0 auto; }
.cookie-content h2 {
  color: #fff;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.cookie-content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-3);
}
.cookie-options { margin-bottom: var(--sp-4); }
.cookie-option {
  padding: 6px 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
}
.cookie-option label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  cursor: pointer;
}
.cookie-option input[type="checkbox"] {
  accent-color: var(--ember);
  width: 16px;
  height: 16px;
}

/* .content-section → spacing alias for guide pages */
.content-section {
  margin-bottom: var(--sp-8);
}
.content-section h2 {
  color: var(--ember);
  margin-bottom: var(--sp-4);
}

/* .hero-section → inner-page hero banner */
.hero-section {
  background: linear-gradient(135deg, var(--ink) 0%, #3a1505 100%);
  color: var(--cream);
  padding: var(--sp-12) 0;
  margin-bottom: var(--sp-8);
  text-align: center;
}
.hero-section h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: var(--sp-4);
}
.hero-section p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(254,252,248,0.8);
  font-size: 1.05rem;
}

/* .legal-table → table in cerez-politikasi */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-4) 0 var(--sp-6);
  font-size: 0.9rem;
}
.legal-table th,
.legal-table td {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.legal-table th {
  background: var(--sand);
  font-weight: 700;
  color: var(--ink);
}
.legal-table tr:hover td {
  background: var(--sand);
}
@media (max-width: 600px) {
  .legal-table { display: block; overflow-x: auto; }
}

/* .sitemap-section h2 → match h3 sizing */
.sitemap-section h2 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--ember);
}
