/* ============================================================
   Isik & Kadraj Akademisi — Editorial Design System
   Premium dark magazine layout for photography education
   ============================================================ */

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

:root {
  /* Palette */
  --bg: #0b0a09;
  --bg2: #100e0c;
  --sf: #161412;
  --sf2: #1d1a17;
  --sf3: #24211e;
  --tx: #c8c0b5;
  --tx2: #938b82;
  --tx3: #65605a;
  --hd: #ede8e0;
  --ac: #cc9032;
  --ac2: #e0a848;
  --ac-dim: rgba(204, 144, 50, .10);
  --ac-glow: rgba(204, 144, 50, .05);
  --bd: rgba(255, 255, 255, .04);
  --bd2: rgba(255, 255, 255, .07);
  --bd3: rgba(255, 255, 255, .12);
  --wh: #fff;
  --bk: #080706;
  --ok: #5cb870;
  --er: #d94f4f;

  /* Font */
  --f: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --f-serif: Georgia, "Times New Roman", serif;

  /* Spacing */
  --s1: .25rem; --s2: .5rem; --s3: .75rem; --s4: 1rem; --s5: 1.25rem;
  --s6: 1.5rem; --s8: 2rem; --s10: 2.5rem; --s12: 3rem; --s16: 4rem;
  --s20: 5rem; --s24: 6rem; --s32: 8rem;

  /* Radius */
  --r1: 4px; --r2: 8px; --r3: 12px; --r4: 16px;

  /* Easing */
  --eo: cubic-bezier(.22, 1, .36, 1);
  --eox: cubic-bezier(.16, 1, .3, 1);

  --mw: 1120px;
  --hh: 72px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .rv, .reveal { opacity: 1 !important; transform: none !important; }
}

html { font-size: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--f);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--tx);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--ac); color: var(--bk); }

/* ===== Skip link ===== */
.skip-link {
  position: absolute; top: -100%; left: var(--s4);
  background: var(--ac); color: var(--bk);
  padding: var(--s2) var(--s4); border-radius: var(--r1);
  z-index: 10000; font-weight: 600; font-size: .85rem;
  text-decoration: none; transition: top .15s;
}
.skip-link:focus { top: var(--s4); }

/* ===== Base elements ===== */
a { color: var(--ac); text-decoration: none; transition: color .2s var(--eo); }
a:hover { color: var(--ac2); }
:focus-visible { outline: 2px solid var(--ac); outline-offset: 3px; border-radius: var(--r1); }

h1, h2, h3, h4 {
  font-family: var(--f);
  color: var(--hd);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
}
h1 { font-size: clamp(1.75rem, 4vw + .5rem, 3rem); margin-bottom: var(--s6); }
h2 { font-size: clamp(1.25rem, 2.5vw + .25rem, 1.85rem); margin-bottom: var(--s5); }
h3 { font-size: clamp(1.05rem, 1.5vw + .2rem, 1.25rem); margin-bottom: var(--s3); }
h4 { font-size: 1rem; font-weight: 600; margin-bottom: var(--s2); }

p { margin-bottom: var(--s5); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: var(--s8); margin-bottom: var(--s5); }
li { margin-bottom: var(--s2); line-height: 1.75; }
strong { color: var(--hd); }
hr { border: none; height: 1px; background: var(--bd2); margin: var(--s12) 0; }

/* Link underline effect */
.link-fx { position: relative; }
.link-fx::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--ac);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--eo);
}
.link-fx:hover::after { transform: scaleX(1); transform-origin: left; }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--mw); margin: 0 auto; padding: 0 var(--s6); }
.main-content { flex: 1; padding-top: var(--s12); padding-bottom: var(--s20); }

/* ===== Scroll reveal ===== */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--eox), transform .6s var(--eox);
}
.rv-in { opacity: 1; transform: none; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s var(--eox), transform .55s var(--eox); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Scroll progress */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  z-index: 1002; background: linear-gradient(90deg, var(--ac), var(--ac2));
  transform: scaleX(0); transform-origin: left; pointer-events: none;
}

/* Cursor glow */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(204, 144, 50, .03) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 0;
  will-change: transform; mix-blend-mode: screen;
}

/* ============================================================
   SHUTTER REVEAL — Horizontal split
   ============================================================ */
.shutter-overlay {
  position: fixed; inset: 0; z-index: 99999;
  pointer-events: none;
}
.loading { overflow: hidden; }
.sh-blade {
  position: absolute; left: 0; right: 0; height: 50%;
  background: var(--bg);
  transition: transform .9s cubic-bezier(.7, 0, .3, 1);
}
.sh-t { top: 0; }
.sh-b { bottom: 0; }
.sh-iris {
  position: absolute; top: 50%; left: 50%;
  width: 48px; height: 48px; margin: -24px 0 0 -24px;
  border: 2px solid var(--ac); border-radius: 50%;
  opacity: .5;
  transition: opacity .4s, transform .6s cubic-bezier(.16,1,.3,1);
}
.shutter-overlay.open .sh-t { transform: translateY(-100%); }
.shutter-overlay.open .sh-b { transform: translateY(100%); }
.shutter-overlay.open .sh-iris { opacity: 0; transform: scale(3); }

/* Mobile: faster shutter, smaller iris */
@media (max-width: 700px) {
  .sh-blade { transition-duration: .6s; }
  .sh-iris { width: 36px; height: 36px; margin: -18px 0 0 -18px; border-width: 1.5px; }
}
/* Disable shutter entirely on very small/slow devices */
@media (max-width: 380px) {
  .shutter-overlay { display: none; }
  .loading { overflow: auto; }
}
/* Mobile: ensure content is never permanently hidden by reveal animations */
@media (max-width: 700px) {
  .rv { transition-duration: .4s; }
  .shutter-overlay { transition-duration: .5s; }
}

/* ============================================================
   BOKEH PARTICLES
   ============================================================ */
.bokeh-field {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 0;
}
.bokeh-orb {
  position: absolute;
  background: radial-gradient(circle, rgba(204,144,50,.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: bk-drift ease-in-out infinite;
}
@keyframes bk-drift {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(12px,-25px); }
  66% { transform: translate(-15px,-10px); }
}

/* ============================================================
   SCROLL REVEAL — clean, no blur
   ============================================================ */
@keyframes char-in {
  from { opacity: 0; transform: translateY(24px) rotate(3deg); }
  to { opacity: 1; transform: none; }
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  background: rgba(11, 10, 9, .78);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  position: sticky; top: 0; z-index: 1000;
  height: var(--hh); display: flex; align-items: center;
  transition: background .35s, box-shadow .35s;
}
.site-header.scrolled {
  background: rgba(11, 10, 9, .95);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .5);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--mw); margin: 0 auto; padding: 0 var(--s6);
  overflow: hidden;
}
.site-logo {
  display: flex; align-items: center; gap: var(--s3);
  text-decoration: none; color: var(--hd);
  font-weight: 700; font-size: 1.05rem; flex-shrink: 0;
  letter-spacing: -.01em; transition: opacity .2s;
}
.site-logo:hover { opacity: .75; color: var(--hd); }
.logo-icon { width: 34px; height: 34px; flex-shrink: 0; display: flex; align-items: center; }
.logo-icon svg { width: 100%; height: 100%; color: var(--ac); }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; list-style: none; gap: 0; padding: 0; margin: 0; }
.nav-list a {
  display: block; padding: 8px 14px;
  color: var(--tx2); font-size: .9rem; font-weight: 500;
  border-radius: var(--r2); white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-list a:hover { color: var(--hd); background: rgba(255, 255, 255, .04); }
.nav-list a[aria-current="page"] { color: var(--ac); background: var(--ac-dim); font-weight: 600; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--bd2);
  padding: 5px; border-radius: var(--r1); cursor: pointer; color: var(--tx);
  transition: border-color .15s, background .15s;
}
.nav-toggle:hover { border-color: var(--ac); background: var(--ac-dim); }
.nav-toggle svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; display: block; }
.nav-toggle.is-active svg { display: none; }
.nav-toggle .close-icon { display: none; font-size: 20px; line-height: 1; }
.nav-toggle.is-active .close-icon { display: block; }

@media (max-width: 1150px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: var(--hh); left: 0; right: 0;
    background: rgba(11, 10, 9, .97); backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--bd2);
    transform: translateY(-120%); opacity: 0;
    transition: transform .4s var(--eox), opacity .3s;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .6); z-index: 999;
    display: flex; justify-content: center;
    padding: var(--s4) var(--s4);
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; }
  .nav-list { flex-direction: column; gap: 0; align-items: center; width: 100%; }
  .nav-list a { padding: 12px var(--s4); font-size: .92rem; border-radius: var(--r2); }
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb { padding: var(--s5) 0 var(--s8); }
.breadcrumb ol {
  display: flex; flex-wrap: wrap; list-style: none; padding: 0; margin: 0;
  gap: var(--s2); font-size: 1.05rem; color: var(--tx3); align-items: center;
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li:not(:last-child)::after {
  content: "\203A"; margin-left: var(--s3); color: var(--tx3); font-size: .85rem; opacity: .4;
}
.breadcrumb a { color: var(--tx3); transition: color .15s; }
.breadcrumb a:hover { color: var(--ac); }
.breadcrumb [aria-current="page"] { color: var(--tx2); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background:
    radial-gradient(ellipse 700px 500px at 72% 28%, rgba(204, 144, 50, .06), transparent),
    radial-gradient(ellipse 400px 400px at 18% 75%, rgba(204, 144, 50, .03), transparent),
    linear-gradient(168deg, var(--bg) 0%, var(--bg2) 40%, var(--sf) 100%);
  color: var(--wh);
  padding: var(--s32) 0 var(--s24);
  text-align: center; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--bd2);
}
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(204, 144, 50, .05) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
  animation: orb 14s ease-in-out infinite alternate;
}
@keyframes orb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-50px, 30px) scale(1.12); }
}
.hero .container { position: relative; z-index: 1; transform: translateY(var(--scroll-y, 0)); }
.hero .container::before,
.hero .container::after {
  content: ""; position: absolute; width: 44px; height: 44px;
  border-color: rgba(204, 144, 50, .14); border-style: solid; pointer-events: none;
}
.hero .container::before { top: -24px; left: 0; border-width: 1px 0 0 1px; }
.hero .container::after { bottom: -24px; right: 0; border-width: 0 1px 1px 0; }
.hero h1 {
  color: var(--wh); font-size: clamp(2rem, 5vw + .5rem, 3.5rem);
  letter-spacing: -.035em; line-height: 1.08; margin-bottom: var(--s5);
}
.hero p {
  font-size: clamp(.92rem, 1.2vw + .15rem, 1.05rem);
  color: rgba(255, 255, 255, .45); max-width: 500px;
  margin: 0 auto var(--s8); line-height: 1.85;
}
.hero-cta { display: inline-flex; gap: var(--s4); flex-wrap: wrap; justify-content: center; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  padding: 11px 24px; font-size: .85rem; font-weight: 600; font-family: inherit;
  border-radius: var(--r2); border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; line-height: 1.4; transition: all .25s var(--eo); position: relative;
}
.btn-primary { background: var(--ac); color: var(--bk); border-color: var(--ac); }
.btn-primary:hover {
  background: var(--ac2); border-color: var(--ac2); color: var(--bk);
  box-shadow: 0 0 40px rgba(204, 144, 50, .18), 0 4px 14px rgba(0, 0, 0, .25);
}
.btn-primary:active { transform: scale(.97); }
.btn-outline { background: transparent; color: rgba(255, 255, 255, .75); border-color: rgba(255, 255, 255, .15); }
.btn-outline:hover { border-color: rgba(255, 255, 255, .4); color: var(--wh); background: rgba(255, 255, 255, .03); }
.btn-secondary { background: var(--sf2); color: var(--tx); border-color: var(--bd2); }
.btn-secondary:hover { border-color: var(--ac); color: var(--ac); background: var(--ac-dim); }

/* ================================================================
   SECTION HEADINGS
   ================================================================ */
.section-heading { text-align: center; margin-bottom: var(--s12); }
.section-heading h2 { position: relative; display: inline-block; }
.section-heading h2::after {
  content: ""; display: block; width: 36px; height: 2px;
  background: var(--ac); margin: var(--s3) auto 0; opacity: .45;
}
.section-heading p { color: var(--tx2); max-width: 46ch; margin: var(--s3) auto 0; font-size: .92rem; }

/* ================================================================
   CARDS
   ================================================================ */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s6); margin: var(--s8) 0;
}
.card {
  background: var(--sf); border: 1px solid var(--bd2); border-radius: var(--r3);
  padding: var(--s6); position: relative;
  transition: border-color .4s, box-shadow .4s;
}
.card:hover {
  border-color: rgba(204, 144, 50, .16);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .35), 0 0 45px rgba(204, 144, 50, .05);
}
.card::before {
  content: ""; position: absolute; top: -1px; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ac), transparent);
  opacity: 0; transition: opacity .4s, left .4s var(--eo), right .4s var(--eo);
}
.card:hover::before { opacity: .4; left: var(--s6); right: var(--s6); }

.card-image-slot {
  width: 100%; height: 140px;
  background: linear-gradient(135deg, var(--sf2) 0%, var(--sf3) 100%);
  border-radius: var(--r2); margin-bottom: var(--s5);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; border: 1px solid var(--bd);
}
.card-image-slot svg {
  width: 30px; height: 30px; opacity: .08; color: var(--ac);
  transition: transform .5s var(--eox), opacity .3s;
}
.card:hover .card-image-slot svg { transform: scale(1.15) rotate(6deg); opacity: .18; }
.card-image-slot::after {
  content: ""; position: absolute; width: 60px; height: 60px;
  border: 1px solid rgba(204, 144, 50, .04); border-radius: 50%;
  transition: transform .6s var(--eox), border-color .3s;
}
.card:hover .card-image-slot::after { transform: scale(1.7) rotate(45deg); border-color: rgba(204, 144, 50, .1); }

.card h3 { margin-bottom: var(--s2); }
.card h3 a { color: var(--hd); transition: color .15s; }
.card h3 a:hover { color: var(--ac); }
.card > p, .card .card-body > p { color: var(--tx2); font-size: .87rem; line-height: 1.65; margin-bottom: var(--s3); }
.card .card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600; font-size: .82rem;
  transition: gap .3s var(--eo), color .15s;
}
.card:hover .card-link { gap: 10px; }

/* ================================================================
   ARTICLE PAGES — Panel-Based Editorial Layout
   ================================================================ */
.article-header {
  margin-bottom: var(--s10); padding-bottom: var(--s8);
  border-bottom: 1px solid var(--bd2);
}
.article-header h1 {
  margin-bottom: var(--s3);
  font-size: clamp(1.8rem, 3.5vw + .5rem, 2.8rem);
  line-height: 1.12;
}
.article-header::before {
  content: ""; display: block; width: 32px; height: 3px;
  background: var(--ac); margin-bottom: var(--s6); border-radius: 2px;
}
.article-meta { color: var(--tx3); font-size: .8rem; }

/* --- Article body: LIGHT reading surface on dark page --- */
.article-body {
  background: #f5f2ed;
  color: #2a2520;
  border-radius: var(--r4);
  padding: var(--s12);
  font-size: 1.08rem;
  line-height: 2;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  counter-reset: section;
}

.article-body p {
  color: #3a3530;
  line-height: 2;
  margin-bottom: var(--s6);
}

/* First paragraph drop cap */
.article-body > p:first-of-type::first-letter,
.article-body > .content-panel:first-child > p:first-of-type::first-letter {
  float: left;
  font-family: var(--f-serif);
  font-size: 3.8em;
  line-height: .78;
  font-weight: 700;
  color: var(--ac);
  padding-right: .1em;
  margin-top: .05em;
}

/* H2 — section divider */
.article-body h2 {
  counter-increment: section;
  color: #1a1510;
  font-size: clamp(1.4rem, 2.5vw + .3rem, 1.9rem);
  line-height: 1.2;
  margin-top: var(--s16);
  margin-bottom: var(--s6);
  padding-top: var(--s10);
  padding-left: var(--s10);
  border-top: 1px solid rgba(0,0,0,.08);
  position: relative;
}
.article-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
/* Section number */
.article-body h2::before {
  content: counter(section, decimal-leading-zero);
  position: absolute; left: 0; top: var(--s10);
  font-size: .8rem; font-weight: 800;
  color: var(--ac); opacity: .6;
}
.article-body h2:first-child::before { top: 0; }

/* H3 */
.article-body h3 {
  color: #1a1510;
  margin-top: var(--s8); margin-bottom: var(--s4);
  font-size: 1.15rem;
  padding-left: var(--s5);
  position: relative;
}
.article-body h3::before {
  content: "";
  position: absolute; left: 0; top: .4em;
  width: 6px; height: 6px;
  background: var(--ac); border-radius: 50%; opacity: .5;
}

/* Lists */
.article-body ul, .article-body ol {
  margin-bottom: var(--s6); padding-left: var(--s8);
}
.article-body li {
  margin-bottom: var(--s3); line-height: 1.9;
  color: #3a3530; font-size: 1.04rem;
}
.article-body ul li::marker { color: var(--ac); }
.article-body ol li::marker { color: var(--ac); font-weight: 700; }

/* Links */
.article-body a:not(.btn) {
  color: #a0722a;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(160,114,42,.25);
  transition: text-decoration-color .2s;
}
.article-body a:not(.btn):hover { text-decoration-color: #a0722a; }

/* Tip box on light bg */
.article-body .tip-box {
  background: rgba(204,144,50,.06);
  border: 1px solid rgba(204,144,50,.15);
  border-left: 4px solid var(--ac);
  box-shadow: none;
}
.article-body .tip-box p { color: #3a3530; }
.article-body .tip-box strong { color: #9a6e20; }

/* Content images on light bg */
.article-body .content-image {
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.article-body .content-image figcaption {
  background: #eee9e2;
  color: #6a6055;
  border-top: 1px solid rgba(0,0,0,.06);
}

/* Content panels inside light article-body — transparent, no dark overrides */
.content-panel,
.article-body > section {
  padding: 0; margin-bottom: 0;
  background: transparent; border: none;
  border-radius: 0; position: relative;
}

/* Related sections inside article body — dark cards */
.article-body .related-articles,
.article-body .related-content,
.article-body .related-links {
  background: var(--sf);
  border-radius: var(--r3);
  padding: var(--s8);
  margin-top: var(--s12);
  border: 1px solid var(--bd2);
}
.article-body .related-articles h2,
.article-body .related-content h2,
.article-body .related-links h2 {
  color: var(--hd);
  border: none; padding: 0; margin: 0 0 var(--s5);
  font-size: 1.1rem;
}
.article-body .related-articles h2::before,
.article-body .related-content h2::before,
.article-body .related-links h2::before { display: none; }
.article-body .related-articles ul,
.article-body .related-content ul,
.article-body .related-links ul {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--s3);
}
.article-body .related-articles li a,
.article-body .related-content li a,
.article-body .related-links li a {
  display: block; padding: var(--s4); background: var(--sf2);
  border: 1px solid var(--bd2); border-radius: var(--r2);
  color: var(--tx); font-weight: 500; font-size: .88rem;
  text-decoration: none;
  transition: border-color .2s, transform .2s, color .15s;
}
.article-body .related-articles li a:hover,
.article-body .related-content li a:hover,
.article-body .related-links li a:hover {
  border-color: rgba(204,144,50,.2); transform: translateY(-2px); color: var(--ac);
}

@media (max-width: 600px) {
  .article-body { padding: var(--s6) var(--s5); font-size: 1rem; }
  .article-body h2 { padding-left: var(--s8); font-size: 1.25rem; }
}

/* Image slot — viewfinder frame */
.image-slot {
  width: 100%; min-height: 200px;
  background: linear-gradient(145deg, var(--sf2), var(--sf3));
  border-radius: var(--r3); margin: var(--s6) 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--bd2); position: relative;
  overflow: hidden;
}
/* Corner marks like viewfinder */
.image-slot::before {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(204, 144, 50, .08);
  border-radius: var(--r2);
  pointer-events: none;
}
.image-slot::after {
  content: attr(data-caption); position: absolute;
  bottom: var(--s3); left: 50%; transform: translateX(-50%);
  font-size: .7rem; color: var(--tx3); font-style: italic;
  white-space: nowrap; background: var(--sf2);
  padding: 2px 10px; border-radius: var(--r1);
}
.image-slot svg { width: 20px; height: 20px; opacity: .05; color: var(--ac); }

/* Content image — float with text */
.content-image {
  float: right; width: 36%; max-width: 300px;
  margin: var(--s2) 0 var(--s8) var(--s10);
  border-radius: var(--r3); overflow: hidden;
  border: 1px solid var(--bd2); background: var(--sf2);
  transition: box-shadow .35s var(--eo), transform .35s var(--eo);
}
.content-image:hover { box-shadow: 0 8px 28px rgba(0, 0, 0, .4); transform: translateY(-3px); }
.content-image-left { float: left; margin: var(--s2) var(--s10) var(--s8) 0; }
.content-image img { width: 100%; height: auto; display: block; object-fit: cover; }
.content-image figcaption {
  padding: var(--s3) var(--s4); font-size: .74rem;
  color: var(--tx3); background: var(--sf);
  text-align: center; line-height: 1.4;
  border-top: 1px solid var(--bd);
}
@media (max-width: 600px) {
  .content-image, .content-image-left {
    float: none; width: 100%; max-width: 100%;
    margin: var(--s5) 0 var(--s8);
  }
}

/* Tip box — premium callout */
.tip-box {
  background: linear-gradient(135deg, rgba(204,144,50,.07), rgba(204,144,50,.02));
  border: 1px solid rgba(204,144,50,.15);
  border-left: 4px solid var(--ac);
  border-radius: 0 var(--r4) var(--r4) 0;
  padding: var(--s8) var(--s10);
  margin: var(--s8) 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,.15), inset 0 0 40px rgba(204,144,50,.02);
}
.tip-box p {
  color: var(--tx); margin-bottom: 0;
  line-height: 1.85; font-size: 1rem;
}
.tip-box strong {
  display: flex; align-items: center; gap: var(--s3);
  margin-bottom: var(--s4);
  color: var(--ac); font-size: .82rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.tip-box strong::before {
  content: ""; display: block; width: 18px; height: 18px;
  border: 2px solid var(--ac); border-radius: 50%;
  flex-shrink: 0; opacity: .5;
}

/* Related content (all variants) */
.related-content, .related-articles, .related-links {
  margin-top: var(--s20);
  padding-top: var(--s10);
  border-top: 1px solid var(--bd2);
}
.related-content h2, .related-articles h2, .related-links h2 {
  border: none; padding-top: 0; margin-top: 0; color: var(--hd);
  font-size: 1.15rem;
}
.related-content ul, .related-articles ul, .related-links ul, .related-list {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--s4);
}
.related-content li a, .related-articles li a, .related-links li a, .related-list li a {
  display: block; padding: var(--s4) var(--s5);
  background: var(--sf); border: 1px solid var(--bd2);
  border-radius: var(--r2); color: var(--tx); font-weight: 500; font-size: .88rem;
  transition: border-color .25s, transform .25s, box-shadow .25s, color .15s;
  text-decoration: none;
}
.related-content li a:hover, .related-articles li a:hover, .related-links li a:hover, .related-list li a:hover {
  border-color: rgba(204, 144, 50, .16); transform: translateY(-2px);
  color: var(--ac); box-shadow: 0 0 24px rgba(204, 144, 50, .05);
}

/* ================================================================
   EXPOSURE DEMO
   ================================================================ */
.exposure-demo {
  background: linear-gradient(135deg, var(--sf) 0%, var(--sf2) 100%);
  border-radius: var(--r4); padding: var(--s12) var(--s8);
  margin: var(--s12) 0; border: 1px solid var(--bd2);
  position: relative; overflow: hidden;
}
.exposure-demo::before {
  content: ""; position: absolute; top: -25%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(204, 144, 50, .03), transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.exposure-demo h2 { color: var(--hd); text-align: center; margin-bottom: var(--s4); }
.exposure-demo .demo-desc, .exposure-demo p.demo-desc {
  text-align: center; color: var(--tx3); margin-bottom: var(--s8);
  max-width: 48ch; margin-left: auto; margin-right: auto; font-size: .88rem;
}
.exposure-controls {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s8); margin-bottom: var(--s8);
}
.exposure-slider-group, .slider-group {
  display: flex; flex-direction: column; gap: var(--s2);
}
.exposure-slider-group label, .slider-group label {
  font-weight: 600; font-size: .82rem; color: var(--tx2);
  display: flex; justify-content: space-between;
}
.exposure-slider-group label span, .slider-group label span {
  color: var(--ac); font-weight: 700; font-variant-numeric: tabular-nums;
}
input[type="range"] {
  -webkit-appearance: none; width: 100%; height: 3px; border-radius: 2px;
  background: rgba(255, 255, 255, .07); outline: none; cursor: pointer;
}
input[type="range"]:hover { background: rgba(255, 255, 255, .1); }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%;
  background: var(--ac); cursor: pointer; border: 2px solid var(--hd);
  box-shadow: 0 0 8px rgba(204, 144, 50, .3);
  transition: transform .15s, box-shadow .15s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.25); box-shadow: 0 0 14px rgba(204, 144, 50, .4);
}
input[type="range"]::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%; background: var(--ac);
  cursor: pointer; border: 2px solid var(--hd);
}
.slider-labels {
  display: flex; justify-content: space-between;
  font-size: .62rem; color: var(--tx3); margin-top: 2px; opacity: .5;
}
.exposure-preview { display: flex; align-items: center; justify-content: center; gap: var(--s8); flex-wrap: wrap; }
.exposure-visual {
  width: 160px; height: 160px; border-radius: var(--r3); background: #404040;
  transition: background .4s var(--eo); position: relative; border: 1px solid var(--bd3);
}
.exposure-visual::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid rgba(255, 255, 255, .06); border-radius: var(--r2); pointer-events: none;
}
.exposure-visual::after {
  content: "+"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, .1); font-size: 1rem; font-weight: 300; pointer-events: none;
}
.exposure-info { max-width: 260px; font-size: .85rem; color: var(--tx2); line-height: 1.65; }
.exposure-info strong { color: var(--ac); }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
  background: #f5f2ed;
  border-radius: var(--r4);
  padding: var(--s8) var(--s10);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--bd2); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none; padding: var(--s5) 0;
  text-align: left; font-size: 1rem; font-weight: 600; color: var(--hd);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: var(--s4); font-family: var(--f); line-height: 1.35;
  transition: color .15s;
}
.faq-question:hover { color: var(--ac); }
.faq-icon {
  flex-shrink: 0; width: 14px; height: 14px;
  transition: transform .3s var(--eo); color: var(--tx3);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--ac); }
.faq-answer {
  padding: 0 0 var(--s5); color: var(--tx2); line-height: 1.9; font-size: .98rem;
}
.faq-answer a { color: var(--ac); }

/* ================================================================
   CONTACT
   ================================================================ */
/* --- Contact Hero --- */
.contact-hero {
  padding: var(--s20) 0 var(--s12);
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(204,144,50,.08) 0%, transparent 70%);
}
.contact-hero h1 { margin-bottom: var(--s4); }
.contact-hero p { max-width: 540px; margin: 0 auto; color: var(--tx2); font-size: 1.08rem; }

/* --- Contact Cards --- */
.contact-cards-section { padding-bottom: var(--s12); }
.contact-cards-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6);
}
.contact-card {
  background: var(--sf); border: 1px solid var(--bd2);
  border-radius: var(--r3); padding: var(--s8) var(--s6);
  text-align: center; transition: border-color .3s, transform .3s, box-shadow .3s;
}
.contact-card:hover {
  border-color: rgba(204,144,50,.25); transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.contact-card-icon {
  width: 48px; height: 48px; margin: 0 auto var(--s5);
  background: var(--ac-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon svg { width: 22px; height: 22px; color: var(--ac); }
.contact-card h3 {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--tx3); margin-bottom: var(--s2); font-weight: 600;
}
.contact-card p { margin: 0; color: var(--hd); font-weight: 500; font-size: .95rem; word-break: break-word; }

@media (max-width: 900px) { .contact-cards-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .contact-cards-row { grid-template-columns: 1fr; } }

/* --- Contact Form Section --- */
.contact-form-section { padding-bottom: var(--s20); }
.contact-form-wrapper {
  max-width: 720px; margin: 0 auto;
  background: var(--sf); border: 1px solid var(--bd2);
  border-radius: var(--r4); padding: var(--s10);
  position: relative;
}
.contact-form-wrapper::before {
  content: ""; position: absolute; inset: -1px; border-radius: var(--r4);
  background: linear-gradient(135deg, rgba(204,144,50,.15), transparent 60%);
  z-index: -1; pointer-events: none;
}
.contact-form-header { text-align: center; margin-bottom: var(--s8); }
.contact-form-header h2 { margin-bottom: var(--s2); }
.contact-form-header p { color: var(--tx3); font-size: .92rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.contact-submit { width: 100%; padding: 14px; font-size: 1rem; }

.contact-form-wrapper .form-group label { color: var(--tx2); }
.contact-form-wrapper .form-group input[type="text"],
.contact-form-wrapper .form-group input[type="email"],
.contact-form-wrapper .form-group input[type="tel"],
.contact-form-wrapper .form-group textarea {
  background: var(--bg); color: var(--tx); border-color: var(--bd2);
}
.contact-form-wrapper .form-group input:hover,
.contact-form-wrapper .form-group textarea:hover { border-color: var(--bd3); }
.contact-form-wrapper .form-group input::placeholder,
.contact-form-wrapper .form-group textarea::placeholder { color: var(--tx3); }
.contact-form-wrapper .form-check { color: var(--tx3); }
.contact-form-wrapper .form-check a { color: var(--ac); }
.contact-form-wrapper .form-group .required-star { color: #e06050; }

/* ================================================================
   FORMS
   ================================================================ */
.form-block {
  background: #f5f2ed; color: #2a2520;
  border-radius: var(--r4); padding: var(--s8);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.form-block h2 { color: #1a1510; margin-bottom: var(--s6); }
.form-group { margin-bottom: var(--s6); }
.form-group label {
  display: block; font-weight: 600; font-size: .86rem;
  margin-bottom: 8px; color: #1a1510;
}
.form-group .required-star { color: #c94040; margin-left: 2px; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid rgba(0,0,0,.12); border-radius: var(--r2);
  font-family: var(--f); font-size: .92rem;
  color: #2a2520; background: #fff; line-height: 1.5;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:hover, .form-group textarea:hover { border-color: rgba(0,0,0,.2); }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--ac);
  box-shadow: 0 0 0 3px rgba(204,144,50,.12);
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #a09890; }
.form-group textarea { min-height: 120px; resize: vertical; }

.form-check {
  display: flex; align-items: flex-start; gap: var(--s3);
  font-size: .84rem; color: #5a5550; line-height: 1.55;
}
.form-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--ac); }
.form-check a { color: #a0722a; }

.form-message {
  padding: var(--s5); border-radius: var(--r2);
  margin-top: var(--s5); font-size: .86rem; display: none; font-weight: 500;
}
.form-message.success { display: block; background: #e8f5eb; color: #2d7a3a; border: 1px solid #b5dbbe; }
.form-message.error { display: block; background: #fde8e8; color: #b93a3a; border: 1px solid #f0b5b5; }
.ot-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background:
    radial-gradient(ellipse 500px 180px at 68% 100%, rgba(204, 144, 50, .02), transparent),
    var(--bg);
  color: var(--tx2); padding: var(--s16) 0 var(--s8); border-top: 1px solid var(--bd2);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--s10); margin-bottom: var(--s10); }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: var(--s6); } }

.footer-brand { font-size: .95rem; font-weight: 700; color: var(--hd); margin-bottom: var(--s3); }
.footer-desc { font-size: .82rem; line-height: 1.7; max-width: 30ch; color: var(--tx3); }
.footer-col h4 {
  color: var(--tx2); font-size: .7rem; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: var(--s5); font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: var(--s3); }
.footer-col a { color: var(--tx3); font-size: .84rem; transition: color .15s; }
.footer-col a:hover { color: var(--ac); }
.footer-bottom {
  border-top: 1px solid var(--bd); padding-top: var(--s6);
  text-align: center; font-size: .74rem; color: var(--tx3);
}

/* ================================================================
   COOKIE BANNER & MODAL
   ================================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(22, 20, 18, .97); backdrop-filter: blur(20px);
  border-top: 1px solid var(--bd2); box-shadow: 0 -6px 36px rgba(0, 0, 0, .5);
  padding: var(--s6); z-index: 9999;
  transform: translateY(100%); transition: transform .5s var(--eox);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-inner { max-width: var(--mw); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: var(--s5); }
.cookie-text { flex: 1; min-width: 200px; font-size: .84rem; line-height: 1.6; color: var(--tx2); }
.cookie-text a { text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: var(--s2); flex-wrap: wrap; }
.cookie-actions .btn { font-size: .8rem; padding: 8px 16px; }

.cookie-modal-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, .65);
  z-index: 10001; display: none; align-items: center; justify-content: center;
  padding: var(--s6); backdrop-filter: blur(8px);
}
.cookie-modal-overlay.is-visible { display: flex; }
.cookie-modal {
  background: var(--sf2); border-radius: var(--r4); max-width: 440px; width: 100%;
  max-height: 85vh; overflow-y: auto; padding: var(--s8);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .6); border: 1px solid var(--bd2);
}
.cookie-modal h2 { margin-bottom: var(--s5); color: var(--hd); }
.cookie-category { padding: var(--s4) 0; border-bottom: 1px solid var(--bd); }
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--s1); }
.cookie-category-header h3 { font-size: .88rem; margin-bottom: 0; color: var(--hd); }
.cookie-category p { font-size: .78rem; color: var(--tx3); margin-bottom: 0; }

.toggle-switch { position: relative; width: 38px; height: 20px; flex-shrink: 0; display: block; }
.toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-slider {
  position: absolute; inset: 0; background: rgba(255, 255, 255, .08);
  border-radius: 10px; cursor: pointer; transition: background .2s;
}
.toggle-slider::before {
  content: ""; position: absolute; left: 2px; top: 2px;
  width: 16px; height: 16px; background: var(--tx);
  border-radius: 50%; transition: transform .25s var(--eo);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
.toggle-switch input:checked + .toggle-slider { background: var(--ac); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); background: var(--bk); }
.toggle-switch input:disabled + .toggle-slider { opacity: .35; cursor: not-allowed; }
.toggle-switch input:focus-visible + .toggle-slider { outline: 2px solid var(--ac); outline-offset: 3px; }
.cookie-modal-actions { margin-top: var(--s6); display: flex; gap: var(--s2); justify-content: flex-end; }

/* ================================================================
   PAGE TYPES
   ================================================================ */
/* Content section (hakkimizda etc) — LIGHT reading surface */
.content-section {
  background: #f5f2ed;
  color: #2a2520;
  border-radius: var(--r4);
  padding: var(--s12);
  max-width: 820px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.content-section h1 { margin-bottom: var(--s6); color: #1a1510; }
.content-section h2 {
  margin-top: var(--s10); color: #1a1510;
  padding-top: var(--s8);
  border-top: 1px solid rgba(0,0,0,.08);
  font-size: 1.3rem;
}
.content-section h2:first-of-type { border-top: none; padding-top: 0; }
.content-section h3 { margin-top: var(--s8); color: #1a1510; font-size: 1.1rem; }
.content-section p { color: #3a3530; line-height: 1.95; margin-bottom: var(--s5); font-size: 1.04rem; }
.content-section ul { margin-bottom: var(--s6); }
.content-section li { line-height: 1.85; color: #3a3530; font-size: 1rem; }
.content-section a { color: #a0722a; }

/* Page header (sss, site-haritasi) */
.page-header { margin-bottom: var(--s10); padding-bottom: var(--s6); border-bottom: 1px solid var(--bd2); }
.page-header h1 { margin-bottom: var(--s3); color: var(--hd); }
.page-header p { color: var(--tx2); max-width: 52ch; line-height: 1.8; font-size: .95rem; }

/* FAQ section */
.faq-section { margin-bottom: var(--s12); }
.card-grid-section { margin-bottom: var(--s12); }

/* Sitemap */
.sitemap-content {
  background: #f5f2ed; color: #2a2520;
  border-radius: var(--r4); padding: var(--s10);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  max-width: 780px;
}
.sitemap-list { list-style: none; padding: 0; }
.sitemap-list li { margin-bottom: var(--s3); }
.sitemap-list a {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: var(--s2) 0; font-weight: 500; font-size: .92rem;
  color: #3a3530; transition: color .15s;
}
.sitemap-list a:hover { color: #a0722a; }
.sitemap-section { margin-bottom: var(--s10); }
.sitemap-section h2 {
  font-size: 1.1rem; margin-bottom: var(--s5); padding-bottom: var(--s3);
  border-bottom: 1px solid rgba(0,0,0,.08); color: #1a1510;
}

/* 404 */
.error-section { text-align: center; padding: var(--s24) 0; }
.error-page { text-align: center; padding: var(--s24) 0; }
.error-page h1, .error-section h1 {
  font-size: clamp(4rem, 15vw, 9rem); color: var(--ac);
  margin-bottom: var(--s3); line-height: 1; letter-spacing: -.05em;
  text-shadow: 0 0 100px rgba(204, 144, 50, .1);
}
.error-page p, .error-section p { font-size: 1.05rem; color: var(--tx2); margin-bottom: var(--s8); line-height: 1.75; }
.error-actions { display: flex; gap: var(--s4); justify-content: center; flex-wrap: wrap; margin-top: var(--s6); }

/* Legal pages — LIGHT reading surface */
.legal-content {
  background: #f5f2ed;
  color: #2a2520;
  border-radius: var(--r4);
  padding: var(--s12);
  max-width: 820px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.legal-content h2 {
  margin-top: var(--s10); position: relative;
  padding-left: var(--s8); padding-top: var(--s8);
  border-top: 1px solid rgba(0,0,0,.08); color: #1a1510;
  font-size: 1.2rem;
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content h2::before {
  content: ""; position: absolute; left: 0; top: calc(var(--s8) + 4px);
  height: 1.1em; width: 3px;
  background: var(--ac); border-radius: 2px; opacity: .4;
}
.legal-content h2:first-of-type::before { top: 4px; }
.legal-content h3 { margin-top: var(--s8); color: #1a1510; font-size: 1.05rem; }
.legal-content p { color: #3a3530; line-height: 1.95; font-size: 1rem; }
.legal-content ul { margin-bottom: var(--s6); padding-left: var(--s8); }
.legal-content li { line-height: 1.85; color: #3a3530; font-size: .98rem; }
.legal-content ul li::marker { color: var(--ac); }
.legal-content a { color: #a0722a; }

/* Decorative extras */
.focus-frame { position: relative; }
.focus-frame::before, .focus-frame::after {
  content: ""; position: absolute; width: 24px; height: 24px;
  border-color: rgba(204, 144, 50, .12); border-style: solid; pointer-events: none;
}
.focus-frame::before { top: 0; left: 0; border-width: 1px 0 0 1px; }
.focus-frame::after { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

.glass {
  background: rgba(22, 20, 18, .5); backdrop-filter: blur(16px);
  border: 1px solid var(--bd2); border-radius: var(--r3);
}

.section-divider {
  width: 36px; height: 1px; background: var(--ac);
  border: none; margin: var(--s12) auto; opacity: .25;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 480px) {
  .hero { padding: var(--s20) 0 var(--s16); }
  .hero h1 { font-size: 1.7rem; }
  .hero .container::before, .hero .container::after { display: none; }
  .card-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .exposure-controls { grid-template-columns: 1fr; }
  .exposure-visual { width: 120px; height: 120px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions .btn { flex: 1; }
  .hero-cta { flex-direction: column; width: 100%; padding: 0 var(--s4); }
  .hero-cta .btn { width: 100%; }
  .contact-grid { gap: var(--s5); }
  .footer-grid { gap: var(--s5); }
  .related-content ul, .related-articles ul, .related-links ul, .related-list { grid-template-columns: 1fr; }
  .article-body { font-size: 1rem; }
  .article-body > p:first-of-type::first-letter { font-size: 2.8em; }
}

@media (min-width: 481px) and (max-width: 700px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s8); }
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
  .site-header, .site-footer, .cookie-banner, .cookie-modal-overlay,
  .nav-toggle, .scroll-bar, .cursor-glow { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .hero { background: #eee !important; color: #000 !important; }
  .card, .form-block, .contact-info-block { border-color: #ccc; background: #fff; }
  .rv, .reveal { opacity: 1 !important; transform: none !important; }
}
