/* ==========================================
   Kültür Ajandası Türkiye — styles.css
   Sıcak Anadolu Editöryal Tasarımı
   ========================================== */

/* === CSS Variables === */
:root {
  --bg:           #FBF8F3;
  --bg-alt:       #F0EAE0;
  --bg-dark:      #190F06;
  --bg-dark2:     #241508;
  --bg-white:     #FFFFFF;
  --bg-cream:     #F7F3EC;

  --red:          #C23820;
  --red-hover:    #A5301A;
  --red-light:    rgba(194, 56, 32, 0.12);

  --teal:         #1E7A6A;
  --teal-hover:   #166055;

  --gold:         #C99438;
  --gold-hover:   #DBA840;
  --gold-light:   rgba(201, 148, 56, 0.15);

  --text:         #1E1208;
  --text-body:    #3D2A18;
  --text-muted:   #7A6048;
  --text-light:   #EDE8DC;
  --text-white:   #FFFFFF;

  --border:       #DDD2BE;
  --border-dark:  #38281A;

  --success:      #2A7A50;
  --error:        #B83228;

  --ff-head: Georgia, 'Times New Roman', serif;
  --ff-body: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  2.5rem;
  --fs-4xl:  3.25rem;

  --fw-normal:   400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --shadow-sm: 0 1px 4px rgba(26, 16, 8, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 16, 8, 0.13);
  --shadow-lg: 0 10px 40px rgba(26, 16, 8, 0.22);

  --max-w:    1160px;
  --header-h: 68px;
  --ease:     0.22s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 100%; }
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--red); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* === Skip Link === */
.skip-link {
  position: absolute; top: -100%; left: var(--sp-md);
  background: var(--red); color: var(--text-white);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-sm); font-weight: var(--fw-semibold);
  z-index: 10000; transition: top var(--ease);
}
.skip-link:focus { top: var(--sp-md); }

/* === Focus === */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* === Container === */
.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--sp-lg);
}

/* === Sections === */
.section { padding: var(--sp-3xl) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: var(--text-light); }
.section--cream { background: var(--bg-cream); }

.section h1 {
  font-family: var(--ff-head);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--sp-lg);
}
.section h2 {
  font-family: var(--ff-head);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--text);
  line-height: 1.25;
  margin-bottom: var(--sp-xl);
  position: relative;
  padding-bottom: var(--sp-md);
  text-align: center;
}
.section h2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.section--dark h2 { color: var(--text-white); }
.section--dark h2::after { background: var(--gold); }

.section h3 {
  font-family: var(--ff-head);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--text);
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-md);
}
.section--dark h3 { color: var(--text-light); }

.section > .container > p,
.section > .container > h2 + p {
  font-size: var(--fs-md);
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: var(--sp-xl);
  line-height: 1.8;
}
.section--dark > .container > p { color: rgba(237, 232, 220, 0.72); }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--header-h);
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.site-header .container {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: var(--sp-sm);
  color: var(--text-white);
  font-family: var(--ff-head);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  text-decoration: none; flex-shrink: 0;
}
.site-logo:hover { color: var(--gold); }
.logo-icon { width: 34px; height: 34px; flex-shrink: 0; color: var(--gold); }

/* Nav */
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; gap: 2px; align-items: center; }

.nav-list > li > a {
  display: block;
  padding: var(--sp-sm) var(--sp-md);
  color: rgba(237, 232, 220, 0.82);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  border-radius: var(--r-sm);
  transition: background var(--ease), color var(--ease);
  white-space: nowrap; text-decoration: none;
}
.nav-list > li > a:hover,
.nav-list > li > a[aria-current="page"] {
  background: rgba(201, 148, 56, 0.14);
  color: var(--gold);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 4px;
  padding: var(--sp-sm) var(--sp-md);
  color: rgba(237, 232, 220, 0.82);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  border-radius: var(--r-sm);
  transition: background var(--ease), color var(--ease);
  cursor: pointer; background: none; border: none;
  white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  background: rgba(201, 148, 56, 0.14);
  color: var(--gold);
}
.nav-dropdown-toggle svg {
  width: 11px; height: 11px;
  transition: transform var(--ease);
}
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none; position: absolute;
  top: calc(100% + 4px); left: 0;
  min-width: 190px;
  background: #201208;
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: var(--sp-sm) 0;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }

/* Desktop: open on hover (matches breakpoint where desktop nav is shown) */
@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-menu { display: block; }
  .nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
}

.nav-dropdown-menu li a {
  display: block;
  padding: 8px var(--sp-lg);
  color: rgba(237, 232, 220, 0.78);
  font-size: var(--fs-sm);
  border-radius: 0;
  transition: background var(--ease), color var(--ease);
}
.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a[aria-current="page"] {
  background: rgba(201, 148, 56, 0.12);
  color: var(--gold);
}

/* Mobile toggle */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: var(--sp-sm); cursor: pointer;
}
.menu-toggle span {
  display: block; width: 23px; height: 2px;
  background: var(--text-light);
  transition: transform var(--ease), opacity var(--ease);
  border-radius: 2px;
}
.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); }

/* === Breadcrumb === */
.breadcrumb {
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-md) 0;
}
.breadcrumb ol,
.breadcrumb .breadcrumb-list {
  display: flex; flex-wrap: wrap; gap: var(--sp-xs);
  font-size: var(--fs-sm); color: var(--text-muted);
  list-style: none;
}
.breadcrumb li { display: flex; align-items: center; gap: var(--sp-xs); }
.breadcrumb li + li::before {
  content: '›'; color: var(--text-muted); opacity: 0.55;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: var(--fw-medium); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-sm);
  padding: 0.65rem 1.5rem;
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  border-radius: var(--r-md);
  transition: all var(--ease);
  cursor: pointer; text-decoration: none;
  border: 2px solid transparent; line-height: 1.4;
}
.btn-primary {
  background: var(--red); color: var(--text-white); border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-hover); border-color: var(--red-hover);
  color: var(--text-white);
  transform: translateY(-1px); box-shadow: 0 4px 14px rgba(194, 56, 32, 0.35);
}
.btn-secondary {
  background: transparent; color: rgba(237, 232, 220, 0.88);
  border-color: rgba(237, 232, 220, 0.38);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(237, 232, 220, 0.7);
  color: var(--text-white);
}
.btn-cta {
  background: var(--gold); color: var(--bg-dark); border-color: var(--gold);
  font-size: var(--fs-base); padding: 0.8rem 2.2rem;
}
.btn-cta:hover {
  background: var(--gold-hover); border-color: var(--gold-hover);
  color: var(--bg-dark);
  transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201, 148, 56, 0.38);
}

/* === Hero (homepage) === */
.hero {
  background: var(--bg-dark);
  position: relative; overflow: hidden;
  padding: var(--sp-4xl) 0;
  min-height: 480px; display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 8% 65%, rgba(194, 56, 32, 0.20) 0%, transparent 52%),
    radial-gradient(ellipse at 82% 15%, rgba(201, 148, 56, 0.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -58deg,
    transparent,
    transparent 42px,
    rgba(201, 148, 56, 0.028) 42px,
    rgba(201, 148, 56, 0.028) 43px
  );
  pointer-events: none;
}
.hero .container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-3xl);
  align-items: center;
}
.hero-content {}
.hero h1 {
  font-family: var(--ff-head);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: var(--sp-lg);
  max-width: 600px;
}
.hero-subtitle {
  font-size: var(--fs-md);
  color: rgba(237, 232, 220, 0.78);
  max-width: 540px;
  margin-bottom: var(--sp-xl);
  line-height: 1.8;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: var(--sp-md);
  align-items: center;
}
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.hero-visual svg {
  width: 100%; max-width: 380px; height: auto;
  border-radius: var(--r-lg);
  opacity: 0.88;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.45));
}

/* === Page Hero (inner pages) === */
.page-hero {
  background: var(--bg-dark);
  padding: var(--sp-3xl) 0 var(--sp-2xl);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 100%, rgba(194, 56, 32, 0.13) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--ff-head); font-size: var(--fs-3xl);
  color: var(--text-white); font-weight: var(--fw-bold);
  line-height: 1.2; margin-bottom: var(--sp-sm);
  text-align: center;
}
.page-hero .subtitle,
.page-hero .page-intro {
  color: rgba(237, 232, 220, 0.72); font-size: var(--fs-md);
  text-align: center; max-width: 680px; margin-left: auto; margin-right: auto;
  line-height: 1.8;
}

/* === Card Grid === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-xl);
  margin-top: var(--sp-2xl);
}

/* === Card === */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(194, 56, 32, 0.28);
}
.card-visual {
  height: 172px;
  background: linear-gradient(145deg, var(--bg-alt) 0%, #E4D9CC 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.card-visual svg { width: 100%; height: 100%; }
.card-visual::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity: 0; transition: opacity var(--ease);
}
.card:hover .card-visual::after { opacity: 1; }
.card-body { padding: var(--sp-lg); flex: 1; display: flex; flex-direction: column; }
.card-body h3 {
  font-family: var(--ff-head);
  font-size: var(--fs-lg); font-weight: var(--fw-bold);
  color: var(--text); margin-bottom: var(--sp-sm);
}
.card-body p {
  font-size: var(--fs-sm); color: var(--text-muted);
  line-height: 1.65; margin-bottom: var(--sp-md); flex: 1;
}
.card-link {
  display: inline-flex; align-items: center; gap: var(--sp-xs);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  color: var(--red); margin-top: auto;
}
.card-link:hover { color: var(--red-hover); }

/* === Program Card === */
.program-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--r-md);
  padding: var(--sp-lg) var(--sp-xl);
  margin-bottom: var(--sp-lg);
  overflow: hidden;
  transition: box-shadow var(--ease), border-left-color var(--ease);
}
.program-card:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}
.program-card-visual {
  margin: calc(-1 * var(--sp-lg)) calc(-1 * var(--sp-xl)) var(--sp-lg) calc(-1 * var(--sp-xl) - 4px);
  height: 150px; overflow: hidden;
}
.program-card-visual svg { width: 100%; height: 100%; }
.program-card h3 {
  font-family: var(--ff-head);
  font-size: var(--fs-lg); font-weight: var(--fw-bold);
  color: var(--text); margin-top: 0; margin-bottom: var(--sp-sm);
}
.program-card p {
  font-size: var(--fs-sm); color: var(--text-body);
  line-height: 1.7; margin-bottom: var(--sp-md);
}
.program-card a {
  font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--red);
}
.program-card a:hover { color: var(--red-hover); }
.program-card .meta {
  font-size: var(--fs-sm); color: var(--text-muted);
  margin-bottom: var(--sp-md);
  display: flex; flex-wrap: wrap; gap: var(--sp-md);
}
/* In card-grid context, program-cards don't have left-border bleed issue */
.card-grid .program-card {
  margin-bottom: 0;
}

/* === Filter Bar === */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: var(--sp-sm);
  justify-content: center;
  margin: var(--sp-xl) 0 var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.filter-btn {
  padding: 0.4rem 1.1rem;
  font-size: var(--fs-sm); font-weight: var(--fw-medium);
  color: var(--text-body);
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer; transition: all var(--ease);
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active {
  background: var(--red); color: var(--text-white);
  border-color: var(--red); font-weight: var(--fw-semibold);
}

/* Tempo Switch */
.tempo-switch {
  display: flex; align-items: center; gap: var(--sp-sm);
  margin: var(--sp-sm) 0 var(--sp-xl); flex-wrap: wrap;
}
.tempo-label {
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  color: var(--text-muted);
}
.tempo-btn {
  padding: 0.3rem 1rem;
  font-size: var(--fs-sm); font-weight: var(--fw-medium);
  color: var(--text-muted);
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 20px; cursor: pointer; transition: all var(--ease);
}
.tempo-btn:hover { border-color: var(--teal); color: var(--teal); }
.tempo-btn.active {
  background: var(--teal); color: var(--text-white); border-color: var(--teal);
}

/* === Info Grid (Nasıl Kullanılır) === */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-xl);
  margin: var(--sp-2xl) 0;
}
.info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  transition: box-shadow var(--ease), border-color var(--ease);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(194, 56, 32, 0.22);
}
.info-icon {
  width: 44px; height: 44px;
  color: var(--red); margin-bottom: var(--sp-md); flex-shrink: 0;
}
.info-card h3 {
  font-family: var(--ff-head);
  font-size: var(--fs-lg); font-weight: var(--fw-bold);
  color: var(--text); margin-bottom: var(--sp-sm); margin-top: 0;
}
.info-card p {
  font-size: var(--fs-sm); color: var(--text-body); line-height: 1.7;
}

/* === Content Area (legal / inner pages) === */
.content-area { padding: var(--sp-3xl) 0; }
.content-area h2 {
  font-family: var(--ff-head); font-size: var(--fs-2xl);
  color: var(--text); font-weight: var(--fw-bold);
  margin-top: var(--sp-2xl); margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-sm);
  border-bottom: 2px solid var(--red);
}
.content-area h2:first-child { margin-top: 0; }
.content-area h3 {
  font-family: var(--ff-head); font-size: var(--fs-xl);
  color: var(--text); font-weight: var(--fw-semibold);
  margin-top: var(--sp-2xl); margin-bottom: var(--sp-md);
}
.content-area h3:first-child { margin-top: 0; }
.content-area p { margin-bottom: var(--sp-md); line-height: 1.8; color: var(--text-body); }
.content-area ul,
.content-area ol { margin-bottom: var(--sp-md); padding-left: var(--sp-xl); }
.content-area ul { list-style: disc; }
.content-area ol { list-style: decimal; }
.content-area li { margin-bottom: var(--sp-sm); line-height: 1.75; }

/* === Related Links (simple list) === */
.related-links {
  list-style: none;
  display: flex; flex-direction: column; gap: var(--sp-sm);
  margin-top: var(--sp-xl);
}
.related-links li a {
  display: flex; align-items: center; gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text); font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  transition: all var(--ease);
}
.related-links li a::before {
  content: '→'; color: var(--red); font-size: var(--fs-md); flex-shrink: 0;
}
.related-links li a:hover {
  border-color: var(--red); color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

/* === Related Grid / Cards === */
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-lg); margin-top: var(--sp-xl);
}
.related-card {
  display: block; padding: var(--sp-lg);
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--r-md); text-decoration: none;
  color: var(--text); transition: border-color .2s, box-shadow .2s, transform .2s;
}
.related-card:hover {
  border-color: var(--red); box-shadow: var(--shadow-md);
  transform: translateY(-2px); color: var(--text);
}
.related-card h3 {
  margin: 0 0 var(--sp-sm); font-size: var(--fs-md);
  color: var(--red); font-family: var(--ff-head);
}
.related-card p { margin: 0; font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }

/* === Related Content block === */
.related-content {
  margin-top: var(--sp-3xl); padding-top: var(--sp-2xl);
  border-top: 1px solid var(--border);
}
.related-content h2 {
  font-size: var(--fs-xl); margin-bottom: var(--sp-lg);
  color: var(--text); font-family: var(--ff-head); font-weight: var(--fw-bold);
}

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, #190804 0%, #28120A 50%, #190804 100%);
  border-top: 1px solid rgba(194, 56, 32, 0.28);
  border-bottom: 1px solid rgba(194, 56, 32, 0.28);
  padding: var(--sp-3xl) 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(194, 56, 32, 0.16) 0%, transparent 58%),
    radial-gradient(ellipse at 75% 50%, rgba(201, 148, 56, 0.09) 0%, transparent 55%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--ff-head); font-size: var(--fs-2xl);
  color: var(--text-white); font-weight: var(--fw-bold);
  margin-bottom: var(--sp-md); position: static; padding-bottom: 0;
}
.cta-banner h2::after { display: none; }
.cta-banner p {
  color: rgba(237, 232, 220, 0.72); font-size: var(--fs-md);
  margin-bottom: var(--sp-xl);
  max-width: 620px; margin-left: auto; margin-right: auto;
  line-height: 1.8;
}

/* === City Hero === */
.city-hero {
  margin: 0 0 var(--sp-xl);
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.city-visual { width: 100%; height: auto; border-radius: var(--r-lg); }

/* === Afiş Frame === */
.afis-frame {
  border: 2px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: var(--sp-2xl);
  background: var(--bg-dark); color: var(--text-light);
  position: relative; margin: var(--sp-2xl) 0;
}
.afis-frame::before {
  content: '';
  position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(201, 148, 56, 0.18);
  border-radius: var(--r-md); pointer-events: none;
}
.afis-frame h2 { color: var(--gold); border-bottom-color: rgba(201, 148, 56, 0.3); }

/* === Visual Placeholder === */
.visual-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(145deg, var(--bg-dark), #221408);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; margin: var(--sp-lg) 0;
}
.visual-placeholder svg {
  width: 56px; height: 56px; opacity: 0.2;
  color: var(--gold); position: relative; z-index: 1;
}

/* === Tabs === */
.tabs { margin: var(--sp-xl) 0; clear: both; }
.tab-list {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--border); overflow-x: auto;
}
.tab-list [role="tab"] {
  padding: var(--sp-md) var(--sp-xl);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  color: var(--text-muted); background: none; border: none;
  cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; white-space: nowrap; transition: all var(--ease);
}
.tab-list [role="tab"]:hover { color: var(--text); }
.tab-list [role="tab"][aria-selected="true"] { color: var(--red); border-bottom-color: var(--red); }
.tab-panel { padding: var(--sp-xl) 0; }
.tab-panel[hidden] { display: none; }

/* === FAQ === */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md); margin-bottom: var(--sp-md); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left;
  padding: var(--sp-lg);
  font-size: var(--fs-md); font-weight: var(--fw-semibold);
  color: var(--text); background: var(--bg-white);
  border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--sp-md); transition: background var(--ease);
}
.faq-question:hover { background: var(--bg-cream); }
.faq-question svg {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform var(--ease); color: var(--red);
}
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-white);
}
.faq-answer.open { max-height: 800px; }
.faq-answer p {
  padding: var(--sp-sm) var(--sp-lg) var(--sp-lg);
  line-height: 1.75; color: var(--text-body); margin: 0;
}

/* === Contact === */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.25fr;
  gap: var(--sp-2xl); margin: var(--sp-2xl) 0; align-items: start;
}
.contact-info-card {
  background: var(--bg-dark); color: var(--text-light);
  border-radius: var(--r-lg); padding: var(--sp-2xl);
  border: 1px solid var(--border-dark);
}
.contact-info-card h3 {
  color: var(--gold); margin-top: 0; margin-bottom: var(--sp-lg);
  font-family: var(--ff-head); font-size: var(--fs-xl);
}
.contact-detail {
  display: flex; gap: var(--sp-md);
  margin-bottom: var(--sp-lg); font-size: var(--fs-sm);
}
.contact-detail strong { display: block; margin-bottom: var(--sp-xs); color: var(--text-white); }
.contact-form {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-2xl);
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: var(--sp-lg); }
.form-group label {
  display: block; font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  color: var(--text); margin-bottom: var(--sp-sm);
}
.form-group label .required { color: var(--error); }
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.7rem var(--sp-md);
  font-size: var(--fs-base); font-family: var(--ff-body);
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  background: var(--bg); color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red); outline: none;
  box-shadow: 0 0 0 3px rgba(194, 56, 32, 0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-checkbox { display: flex; align-items: flex-start; gap: var(--sp-md); }
.form-checkbox input[type="checkbox"] {
  width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--red);
}
.form-checkbox label { font-size: var(--fs-sm); font-weight: var(--fw-normal); margin-bottom: 0; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.btn-submit {
  display: inline-flex; align-items: center; gap: var(--sp-sm);
  padding: 0.75rem 2rem;
  font-size: var(--fs-base); font-weight: var(--fw-semibold);
  color: var(--text-white); background: var(--red);
  border: none; border-radius: var(--r-md);
  cursor: pointer; transition: all var(--ease);
}
.btn-submit:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-message {
  margin-top: var(--sp-md); padding: var(--sp-md);
  border-radius: var(--r-md); font-size: var(--fs-sm); display: none;
}
.form-message.success {
  display: block; background: rgba(42, 122, 80, 0.1);
  color: var(--success); border: 1px solid rgba(42, 122, 80, 0.25);
}
.form-message.error {
  display: block; background: rgba(184, 50, 40, 0.1);
  color: var(--error); border: 1px solid rgba(184, 50, 40, 0.25);
}

/* === Content Images === */
.content-img-block {
  margin: var(--sp-xl) 0; display: flex; gap: var(--sp-xl); align-items: flex-start;
}
.content-img-block--reverse { flex-direction: row-reverse; }
.content-img-block .img-wrap {
  flex: 0 0 300px; max-width: 300px;
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border);
}
.content-img-block .img-wrap img { width: 100%; height: auto; display: block; object-fit: cover; }
.content-img-block .img-text { flex: 1; min-width: 0; }
.content-img-block .img-text h3 { margin-top: 0; }
.content-img-inline {
  float: right; max-width: 260px;
  margin: 0 0 var(--sp-lg) var(--sp-xl);
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border);
}
.content-img-inline--left { float: left; margin: 0 var(--sp-xl) var(--sp-lg) 0; }
.content-img-inline img { width: 100%; height: auto; display: block; object-fit: cover; }
/* Centered full-width image block */
.content-img-center {
  float: none; clear: both; display: block;
  max-width: 520px; margin: var(--sp-2xl) auto;
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border);
  text-align: center;
}
.content-img-center img { width: 100%; height: auto; display: block; object-fit: cover; }
.img-caption {
  font-size: var(--fs-xs); color: var(--text-muted);
  padding: var(--sp-sm); text-align: center; background: var(--bg-cream);
  line-height: 1.5;
}

/* === Sitemap === */
.sitemap-columns {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: var(--sp-2xl); margin: var(--sp-2xl) 0;
}
.sitemap-col { }
.sitemap-columns h2, .sitemap-columns h3 {
  margin-top: 0; margin-bottom: var(--sp-md);
  font-size: var(--fs-lg); font-family: var(--ff-head);
  color: var(--red); border-bottom: 1px solid var(--border);
  padding-bottom: var(--sp-sm);
}
.sitemap-columns h2::after { display: none; }
.sitemap-columns ul { list-style: none; padding-left: 0; }
.sitemap-columns li { margin-bottom: var(--sp-sm); }
.sitemap-columns a { font-size: var(--fs-sm); display: inline-block; }

/* === Footer spacing === */
main { padding-bottom: var(--sp-4xl); }

/* === Footer === */
.site-footer {
  background: var(--bg-dark); color: var(--text-light);
  padding: var(--sp-3xl) 0 var(--sp-xl);
  border-top: 1px solid var(--border-dark);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl); margin-bottom: var(--sp-2xl);
}
.footer-brand .site-logo { margin-bottom: var(--sp-md); }
.footer-brand p {
  font-size: var(--fs-sm); opacity: 0.62; line-height: 1.7; color: var(--text-light);
}
.footer-col h4 {
  font-family: var(--ff-head); font-size: var(--fs-xs);
  font-weight: var(--fw-semibold); color: var(--gold);
  margin-bottom: var(--sp-md);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-col a {
  display: block; padding: 4px 0;
  color: rgba(237, 232, 220, 0.62); font-size: var(--fs-sm);
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-dark); padding-top: var(--sp-lg);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: var(--sp-md); font-size: var(--fs-xs);
  color: rgba(237, 232, 220, 0.42);
}
.footer-bottom-links { display: flex; gap: var(--sp-lg); }
.footer-bottom-links a { color: rgba(237, 232, 220, 0.42); transition: color var(--ease); }
.footer-bottom-links a:hover { color: var(--gold); }

/* === Cookie Banner === */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: #1E1208; color: var(--text-light);
  padding: var(--sp-xl) var(--sp-lg); z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
  border-top: 2px solid rgba(194, 56, 32, 0.32);
}
.cookie-banner.visible { display: block; }
.cookie-banner-inner { max-width: var(--max-w); margin: 0 auto; }
.cookie-banner p {
  font-size: var(--fs-sm); line-height: 1.65;
  margin-bottom: var(--sp-lg); opacity: 0.88;
}
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-buttons { display: flex; flex-wrap: wrap; gap: var(--sp-md); }
.cookie-btn {
  padding: 0.5rem 1.4rem;
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  border-radius: var(--r-md); cursor: pointer; transition: all var(--ease);
  min-width: 110px; text-align: center; border: 2px solid transparent;
}
.cookie-btn--accept { background: var(--red); color: var(--text-white); border-color: var(--red); }
.cookie-btn--accept:hover { background: var(--red-hover); border-color: var(--red-hover); }
.cookie-btn--reject {
  background: transparent; color: var(--text-light); border-color: rgba(237, 232, 220, 0.28);
}
.cookie-btn--reject:hover { background: rgba(255, 255, 255, 0.07); }
.cookie-btn--settings {
  background: transparent; color: var(--text-light); border-color: rgba(237, 232, 220, 0.28);
}
.cookie-btn--settings:hover { background: rgba(255, 255, 255, 0.07); }

/* === Cookie Modal === */
.cookie-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.65); z-index: 10000;
  align-items: center; justify-content: center;
}
.cookie-modal-overlay.visible { display: flex; }
.cookie-modal {
  background: var(--bg-white); color: var(--text);
  border-radius: var(--r-lg);
  max-width: 500px; width: 90%; max-height: 80vh;
  overflow-y: auto; padding: var(--sp-2xl);
  box-shadow: var(--shadow-lg); position: relative;
}
.cookie-modal h2 {
  font-family: var(--ff-head); font-size: var(--fs-xl);
  margin-bottom: var(--sp-lg); border-bottom: none;
  display: block; padding-bottom: 0;
}
.cookie-modal h2::after { display: none; }
.cookie-category {
  padding: var(--sp-lg) 0; border-bottom: 1px solid var(--border);
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--sp-sm);
}
.cookie-category-header h3 { font-size: var(--fs-base); font-weight: var(--fw-semibold); margin: 0; }
.cookie-category p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }
.toggle-switch { position: relative; width: 46px; height: 25px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: #CCC; border-radius: 25px;
  cursor: pointer; transition: background var(--ease);
}
.toggle-slider::before {
  content: ''; position: absolute;
  width: 19px; height: 19px; border-radius: 50%;
  background: white; top: 3px; left: 3px;
  transition: transform var(--ease);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--red); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(21px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-modal-actions { display: flex; gap: var(--sp-md); margin-top: var(--sp-xl); }
.btn-save-cookies {
  padding: 0.65rem var(--sp-xl);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  background: var(--red); color: var(--text-white);
  border: none; border-radius: var(--r-md);
  cursor: pointer; flex: 1; transition: background var(--ease);
}
.btn-save-cookies:hover { background: var(--red-hover); }
.btn-close-modal {
  position: absolute; top: var(--sp-md); right: var(--sp-md);
  background: none; border: none; font-size: 1.4rem;
  color: var(--text-muted); cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background var(--ease);
}
.btn-close-modal:hover { background: var(--bg-cream); }
.btn-change-cookies {
  display: inline-flex; align-items: center; gap: var(--sp-sm);
  padding: 0.7rem var(--sp-xl);
  font-size: var(--fs-base); font-weight: var(--fw-semibold);
  color: var(--text-white); background: var(--red);
  border: none; border-radius: var(--r-md);
  cursor: pointer; transition: background var(--ease); margin-top: var(--sp-lg);
}
.btn-change-cookies:hover { background: var(--red-hover); }

/* === Legal Content Pages === */
.legal-content {
  padding: var(--sp-3xl) 0;
  max-width: 820px;
}
.legal-updated {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-2xl);
  padding: var(--sp-sm) var(--sp-md);
  background: var(--bg-alt);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--gold);
  display: inline-block;
}
.legal-content h1 {
  font-family: var(--ff-head);
  font-size: var(--fs-3xl); font-weight: var(--fw-bold);
  color: var(--text); line-height: 1.2; margin-bottom: var(--sp-md);
}
.legal-content h2 {
  font-family: var(--ff-head); font-size: var(--fs-xl);
  color: var(--text); font-weight: var(--fw-bold);
  margin-top: var(--sp-2xl); margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-sm);
  border-bottom: 2px solid var(--red);
}
.legal-content h3 {
  font-family: var(--ff-head); font-size: var(--fs-lg);
  color: var(--text); font-weight: var(--fw-semibold);
  margin-top: var(--sp-xl); margin-bottom: var(--sp-sm);
}
.legal-content p { margin-bottom: var(--sp-md); line-height: 1.8; color: var(--text-body); }
.legal-content ul,
.legal-content ol { margin-bottom: var(--sp-md); padding-left: var(--sp-xl); }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { margin-bottom: var(--sp-sm); line-height: 1.75; }

/* Override h2::after in components where it's not needed */
.content-area h2::after,
.afis-frame h2::after,
.cookie-modal h2::after,
.contact-info-card h2::after,
.related-content h2::after,
.legal-content h2::after { display: none; }

/* === Utilities === */
.text-center { text-align: center; }
.text-accent { color: var(--red); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.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;
}

/* === Page Hero subtitle === */
.page-intro {
  color: rgba(237, 232, 220, 0.72);
  font-size: var(--fs-md);
  max-width: 680px;
  line-height: 1.8;
  margin-top: var(--sp-sm);
}

/* === Content Section (inner pages wrapper, like .section but no bg) === */
.content-section {
  padding: var(--sp-3xl) 0;
}
.content-body {
  max-width: 820px;
  margin: 0 auto;
}
.content-block {
  margin-bottom: var(--sp-3xl);
}
.content-block h2 {
  font-family: var(--ff-head);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--text);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-sm);
  border-bottom: 2px solid var(--red);
  position: relative;
}
/* .content-block h2::after overridden by design enhancements below */
.content-block h3 {
  font-family: var(--ff-head);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--text);
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-md);
}
.content-block h3:first-child { margin-top: 0; }
.content-block p { margin-bottom: var(--sp-md); line-height: 1.8; color: var(--text-body); }
.content-block ul,
.content-block ol { margin-bottom: var(--sp-md); padding-left: var(--sp-xl); }
.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block li { margin-bottom: var(--sp-sm); line-height: 1.75; }
.content-block-visual {
  margin-bottom: var(--sp-xl);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.content-block-visual svg { width: 100%; height: auto; display: block; }

/* Section visual (wide decorative SVG) */
.section-visual {
  margin-bottom: var(--sp-2xl);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.section-visual svg { width: 100%; height: auto; display: block; }

/* === Scenario block (gun-senaryolari) === */
.scenario-block {
  margin-bottom: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
  border-bottom: 1px solid var(--border);
}
.scenario-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.scenario-block h2 {
  font-family: var(--ff-head);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--text);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-sm);
  border-bottom: 2px solid var(--red);
  position: relative;
}
/* .scenario-block h2::after overridden by design enhancements below */
.scenario-block p { margin-bottom: var(--sp-md); line-height: 1.8; color: var(--text-body); }

/* === Team grid (hakkimizda) === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-xl);
  margin: var(--sp-xl) 0;
}
.team-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(194, 56, 32, 0.2);
}
.team-avatar {
  width: 80px; height: 80px;
  margin: 0 auto var(--sp-md);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
}
.team-avatar svg { width: 100%; height: 100%; }
.team-card h3 {
  font-family: var(--ff-head);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--text);
  margin-bottom: var(--sp-xs);
  margin-top: 0;
}
.team-role {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-sm);
}
.team-card p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* === Cookie table (cerez-politikasi) === */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-md) 0 var(--sp-xl);
  font-size: var(--fs-sm);
}
.cookie-table th {
  background: var(--bg-alt);
  color: var(--text);
  font-weight: var(--fw-semibold);
  padding: var(--sp-md);
  text-align: left;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.cookie-table td {
  padding: var(--sp-md);
  border: 1px solid var(--border);
  color: var(--text-body);
  line-height: 1.5;
}
.cookie-table tr:nth-child(even) td { background: var(--bg-cream); }

/* === Tabs (etkinlik-turleri, custom class system) === */
.tab-header {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--border);
  margin: var(--sp-xl) 0 0;
  overflow-x: auto;
  overflow-y: hidden;
}
.tab-btn {
  padding: var(--sp-md) var(--sp-xl);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  color: var(--text-muted); background: none; border: none;
  cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; white-space: nowrap; transition: all var(--ease);
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--red); border-bottom-color: var(--red); }
.tab-content {
  display: none;
  padding: var(--sp-xl) 0;
}
.tab-content.active { display: block; }

/* === FAQ list wrapper === */
.faq-list { margin-top: var(--sp-xl); }

/* === Contact extras === */
.contact-form-wrapper h2 {
  font-family: var(--ff-head);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--text);
  margin-bottom: var(--sp-xl);
}
.contact-icon {
  width: 22px; height: 22px;
  color: var(--gold); flex-shrink: 0; margin-top: 2px;
}
.contact-info-card a {
  color: var(--gold); text-decoration: none;
  transition: color var(--ease);
}
.contact-info-card a:hover { color: #e0b45a; text-decoration: underline; }
.contact-info-card .contact-detail h3 {
  margin: 0 0 4px; font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  color: var(--gold); font-family: var(--ff-head);
}
.contact-info-card .contact-detail p {
  margin: 0; font-size: var(--fs-sm); color: var(--text-light); line-height: 1.6;
}
.contact-note {
  margin-top: var(--sp-xl);
  padding: var(--sp-md) var(--sp-lg);
  background: rgba(201, 148, 56, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.contact-note p {
  font-size: var(--fs-sm); color: rgba(237, 232, 220, 0.72); line-height: 1.6; margin: 0;
}
.required-mark { color: var(--error); margin-left: 2px; }
.form-group--hidden { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-group--checkbox {
  display: flex; align-items: flex-start; gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}
.form-group--checkbox label {
  display: flex; align-items: flex-start; gap: var(--sp-sm);
  font-size: var(--fs-sm); font-weight: var(--fw-normal);
  color: var(--text-muted); cursor: pointer; line-height: 1.5;
}
.form-group--checkbox input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 2px; accent-color: var(--red);
}

/* === Responsive — Tablet (≤1024px) === */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .hero-visual { display: none; }
  .hero h1 { font-size: var(--fs-3xl); max-width: 100%; }
  .hero-subtitle { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  /* Float images: collapse to block at tablet */
  .content-img-inline,
  .content-img-inline--left {
    float: none; max-width: 100%; margin: var(--sp-lg) auto;
    display: block;
  }
  .content-img-block {
    flex-direction: column;
  }
  .content-img-block .img-wrap { flex: none; max-width: 100%; }
}

/* === Responsive — Mobile (≤768px) === */
@media (max-width: 768px) {
  :root {
    --fs-4xl: 2.2rem;
    --fs-3xl: 1.85rem;
    --fs-2xl: 1.5rem;
    --sp-3xl: 2.5rem;
    --sp-4xl: 3.5rem;
  }

  /* Mobile nav */
  .menu-toggle { display: flex; }
  .main-nav {
    display: none; position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    padding: var(--sp-md);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; gap: 2px; }
  .nav-list > li > a,
  .nav-dropdown-toggle {
    padding: var(--sp-md) var(--sp-lg);
    width: 100%; border-radius: var(--r-sm);
  }
  .nav-dropdown-toggle { justify-content: space-between; }
  .nav-dropdown-menu {
    position: static; box-shadow: none; border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--r-sm); margin-top: 2px;
  }
  .nav-dropdown-menu li a { padding-left: var(--sp-2xl); }

  /* Hero */
  .hero { padding: var(--sp-2xl) 0; min-height: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  /* Grids */
  .card-grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .info-grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-xl); }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  /* Images */
  .content-img-block,
  .content-img-block--reverse { flex-direction: column; }
  .content-img-block .img-wrap { flex: none; max-width: 100%; width: 100%; }
  .content-img-inline,
  .content-img-inline--left { float: none; max-width: 100%; margin: var(--sp-md) 0; }

  /* Cookie */
  .cookie-buttons { flex-direction: column; }
  .cookie-btn { width: 100%; }
  .cookie-btn--accept { order: -1; }
  .cookie-modal-actions { flex-direction: column; }

  /* Misc */
  .filter-bar { flex-direction: column; }
  .related-links li a { padding: var(--sp-md); }
  .cta-banner { padding: var(--sp-2xl) 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .tab-list [role="tab"] { padding: var(--sp-sm) var(--sp-md); }
  .program-card { padding: var(--sp-md) var(--sp-lg); }
  .program-card-visual {
    margin: calc(-1 * var(--sp-md)) calc(-1 * var(--sp-lg)) var(--sp-md) calc(-1 * var(--sp-lg) - 4px);
  }
}

/* === Responsive — Small Mobile (≤480px) === */
@media (max-width: 480px) {
  :root {
    --fs-4xl: 1.9rem;
    --fs-3xl: 1.6rem;
    --sp-2xl: 2rem;
  }
  .container { padding: 0 var(--sp-md); }
  .hero h1 { font-size: 1.85rem; }
  .info-card { padding: var(--sp-lg); }
  .contact-info-card,
  .contact-form { padding: var(--sp-lg); }
  .cookie-modal { padding: var(--sp-lg); }
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === Print === */
@media print {
  .site-header, .cookie-banner, .cookie-modal-overlay,
  .site-footer, .skip-link { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* ==========================================
   Design Enhancements — Google Ads Quality
   ========================================== */

/* --- Section variants: gradient & accent backgrounds --- */
.section--warm-gradient {
  background: linear-gradient(135deg, #FBF8F3 0%, #F0EAE0 50%, #EAE0D2 100%);
}
.section--teal {
  background: linear-gradient(135deg, #1E7A6A 0%, #155a4d 100%);
  color: var(--text-white);
}
.section--teal h2, .section--teal h3 { color: var(--text-white); }
.section--teal h2::after { background: var(--gold); }
.section--teal p { color: rgba(237, 232, 220, 0.82); }

/* --- Section dividers (decorative stripe top on alt sections) --- */
.section--alt {
  position: relative;
}
.section--alt::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--teal) 100%);
  opacity: 0.35;
}

/* --- Program card: richer visuals --- */
.program-card {
  background: linear-gradient(to bottom right, var(--bg-white) 70%, var(--bg-cream) 100%);
  transition: box-shadow var(--ease), border-left-color var(--ease), transform var(--ease);
}
.program-card:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
  transform: translateX(3px);
}
.program-card h3 {
  font-family: var(--ff-head);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--text);
  margin-bottom: var(--sp-sm);
}
.program-card-visual {
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--sp-lg);
  border: 1px solid var(--border);
}

/* --- Info card: colored top accent --- */
.info-card {
  border-top: 3px solid var(--red);
  position: relative;
}
.info-grid .info-card:nth-child(2) { border-top-color: var(--teal); }
.info-grid .info-card:nth-child(3) { border-top-color: var(--gold); }
.info-grid .info-card:nth-child(4) { border-top-color: var(--teal); }
.info-grid .info-card:nth-child(5) { border-top-color: var(--red); }
.info-grid .info-card:nth-child(6) { border-top-color: var(--gold); }

/* --- Card: stronger hover with color bleed --- */
.card-visual {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #DDD0BE 100%);
}
.card:hover {
  box-shadow: 0 8px 28px rgba(26, 16, 8, 0.16);
  transform: translateY(-5px);
  border-color: rgba(194, 56, 32, 0.35);
}

/* --- Content block h2 / content-body h2: centered decoration --- */
.content-block h2,
.content-body > h2,
.content-section > .container > h2 {
  border-bottom: none;
  padding-bottom: var(--sp-md);
  text-align: center;
  font-family: var(--ff-head);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--text);
  line-height: 1.25;
  margin-bottom: var(--sp-xl);
  position: relative;
}
.content-block h2::after,
.content-body > h2::after,
.content-section > .container > h2::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.content-block h3 {
  color: var(--red);
}

/* --- City page: section visual has colored frame --- */
.section-visual {
  border: none;
  box-shadow: var(--shadow-md);
}

/* --- Page hero: subtle pattern overlay --- */
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(201, 148, 56, 0.04) 28px,
    rgba(201, 148, 56, 0.04) 29px
  );
  pointer-events: none;
}

/* --- CTA Banner: stronger gradient --- */
.cta-banner {
  background: linear-gradient(135deg, #190F06 0%, #2A1A08 40%, #1A0E08 100%);
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(194, 56, 32, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(201, 148, 56, 0.18) 0%, transparent 50%);
  pointer-events: none;
}

/* --- Section h2 subtitle paragraph --- */
.section > .container > p:first-of-type {
  margin-left: auto; margin-right: auto;
  text-align: center;
}

/* --- Related grid: more visual --- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-lg);
}
.related-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  text-decoration: none; color: inherit;
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
  display: block;
}
.related-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(194, 56, 32, 0.28);
  transform: translateY(-2px);
  color: inherit;
}
.related-card h3 {
  font-family: var(--ff-head);
  font-size: var(--fs-base); font-weight: var(--fw-bold);
  color: var(--text); margin-bottom: var(--sp-sm);
  margin-top: 0;
}
.related-card p {
  font-size: var(--fs-sm); color: var(--text-muted);
  line-height: 1.6; margin: 0;
}

/* --- Scenario block h2: centered style --- */
.scenario-block h2 {
  border-bottom: none;
  text-align: center;
  padding-bottom: var(--sp-md);
}
.scenario-block h2::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--red);
  border-radius: 2px;
}

/* --- City hero: rounded shadow frame --- */
.city-hero {
  border: none;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* --- Content-area h2: modern left accent bar --- */
.content-area h2 {
  border-bottom: none;
  border-left: 4px solid var(--red);
  padding-left: var(--sp-md);
}

/* --- Afis frame: bolder visual --- */
.afis-frame {
  background: linear-gradient(135deg, #1A0F07 0%, #241508 100%);
}

/* --- Stats / highlight strip --- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--sp-xl);
  padding: var(--sp-2xl) 0;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--ff-head);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-sm);
}
.stat-item .stat-label {
  font-size: var(--fs-sm);
  color: rgba(237, 232, 220, 0.68);
}
