/* ============================================
   Karadeniz Balık Sofrası — Ana Stil Dosyası
   Palette: Derin Deniz, Balıkçı Ahşabı, Dalga Köpüğü, Kumsal
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --clr-deniz-derin: #0b1a2e;
  --clr-deniz: #0f2847;
  --clr-deniz-mid: #164170;
  --clr-deniz-light: #1e5a8a;
  --clr-kopuk: #2db5a0;
  --clr-kopuk-light: #4fd4bf;
  --clr-kopuk-glow: rgba(45, 181, 160, 0.25);
  --clr-altin: #d4a84b;
  --clr-altin-light: #e8c36e;
  --clr-bakir: #b87333;
  --clr-ahsap-dark: #2c1810;
  --clr-ahsap: #5a3a28;
  --clr-ahsap-mid: #7a5540;
  --clr-ahsap-light: #a07858;
  --clr-ahsap-surface: #c9a87c;
  --clr-kum: #e8dcc8;
  --clr-kum-light: #f0e8d8;
  --clr-bg-page: #f7f3ec;
  --clr-bg-warm: #faf6ef;
  --clr-text: #1c1a17;
  --clr-text-muted: #5a5347;
  --clr-text-sea: #3a5f7a;
  --clr-text-light: #e8e2d8;
  --clr-border: #d5cbb8;
  --clr-border-sea: rgba(30, 90, 138, 0.2);
  --clr-white: #fff;
  --clr-danger: #b83230;
  --clr-success: #2a8a52;

  --font-body: Georgia, 'Palatino Linotype', 'Times New Roman', serif;
  --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  --shadow-card: 0 3px 15px rgba(11, 26, 46, 0.10);
  --shadow-hover: 0 8px 30px rgba(11, 26, 46, 0.18);
  --shadow-glow: 0 0 20px rgba(45, 181, 160, 0.12);
  --radius: 8px;
  --radius-lg: 14px;
  --max-width: 1140px;
  --header-h: 72px;
}

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

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--clr-text);
  background-color: var(--clr-bg-page);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(30, 90, 138, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(45, 181, 160, 0.03) 0%, transparent 60%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-kopuk);
  text-decoration: none;
  transition: color 0.25s ease;
}
/* 3. NO underline on any links */
a:hover,
a:focus {
  color: var(--clr-deniz-mid);
  text-decoration: none;
}

ul, ol { padding-left: 0; list-style: none; }
li + li { margin-top: 0.35em; }

/* ============================================
   BEAUTIFUL LISTS — Fishing hook markers
   ============================================ */

/* Fishing hook SVGs (inline data URIs) */
/* Teal hook */
/* Gold hook */
/* Small teal hook */

/* --- Article body unordered lists (exclude already-styled lists) --- */
.article-body ul:not(.related-links):not(.step-list) {
  padding-left: 0;
  margin: 1.2em 0;
}
.article-body ul:not(.related-links):not(.step-list) li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.7em;
  line-height: 1.7;
}
.article-body ul:not(.related-links):not(.step-list) li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 16px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 22'%3E%3Cpath d='M8 1 C6 1 6 3.5 8 3.5 L8 14 C8 18.5 2 18.5 2 14 L2 12 L4.5 9.5' fill='none' stroke='%232db5a0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.25s ease;
}
.article-body ul:not(.related-links):not(.step-list) li:hover::before {
  transform: scale(1.2) rotate(-8deg);
}
/* Nested lists in article body — smaller gold hooks */
.article-body ul:not(.related-links) ul {
  margin: 0.5em 0 0.3em;
}
.article-body ul:not(.related-links) ul li::before {
  width: 12px;
  height: 16px;
  top: 0.25em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 22'%3E%3Cpath d='M8 1 C6 1 6 3.5 8 3.5 L8 14 C8 18.5 2 18.5 2 14 L2 12 L4.5 9.5' fill='none' stroke='%23d4a84b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  border-radius: 0;
  box-shadow: none;
}
.article-body ul:not(.related-links) ul li:hover::before {
  transform: scale(1.2) rotate(-8deg);
}

/* --- Article body ordered lists --- */
.article-body > ol,
.article-body section > ol {
  counter-reset: list-counter;
  padding-left: 0;
  margin: 1.2em 0;
}
.article-body > ol > li,
.article-body section > ol > li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.4em;
  margin-bottom: 0.8em;
  line-height: 1.7;
}
.article-body > ol > li::before,
.article-body section > ol > li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.65em;
  height: 1.65em;
  background: linear-gradient(135deg, var(--clr-deniz-mid), var(--clr-kopuk));
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: 0 2px 6px rgba(45, 181, 160, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.article-body > ol > li:hover::before,
.article-body section > ol > li:hover::before {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(45, 181, 160, 0.3);
}

/* --- Wood panel lists (tips on index page) — gold hooks --- */
.wood-panel ul {
  padding-left: 0;
  margin: 1em 0 0;
}
.wood-panel ul li {
  position: relative;
  padding-left: 2.2em;
  margin-bottom: 0.9em;
  line-height: 1.7;
}
.wood-panel ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 18px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 22'%3E%3Cpath d='M8 1 C6 1 6 3.5 8 3.5 L8 14 C8 18.5 2 18.5 2 14 L2 12 L4.5 9.5' fill='none' stroke='%23e8c36e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
  transition: transform 0.25s ease;
}
.wood-panel ul li:hover::before {
  transform: scale(1.2) rotate(-8deg);
}

/* --- Legal content lists — subtle teal hooks --- */
.legal-content ul {
  padding-left: 0;
  margin: 1em 0;
}
.legal-content ul li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 0.55em;
  line-height: 1.7;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 14px;
  height: 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 22'%3E%3Cpath d='M8 1 C6 1 6 3.5 8 3.5 L8 14 C8 18.5 2 18.5 2 14 L2 12 L4.5 9.5' fill='none' stroke='%232db5a0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  opacity: 0.55;
  transition: opacity 0.2s ease, transform 0.25s ease;
}
.legal-content ul li:hover::before {
  opacity: 1;
  transform: scale(1.15) rotate(-8deg);
}

/* --- Contact page FAQ list (inside article-body) --- */
.article-body > section > ul,
.article-body > ul {
  padding-left: 0;
}

/* --- Footer lists already have list-style: none — keep as is --- */

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--clr-deniz);
  line-height: 1.3;
  margin-bottom: 0.5em;
}
h1 { font-size: 2.1rem; }
h2 {
  font-size: 1.6rem;
  padding-bottom: 0.4em;
  margin-top: 2rem;
  border-bottom: none;
  position: relative;
}
h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-kopuk), var(--clr-altin));
  border-radius: 2px;
}
h3 { font-size: 1.25rem; color: var(--clr-ahsap-dark); margin-top: 1.5rem; }
p { margin-bottom: 1em; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* 1. REMOVED padding-top */
.page-content {
  flex: 1;
  padding: 0 0 3rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: linear-gradient(180deg, var(--clr-deniz-derin) 0%, var(--clr-deniz) 100%);
  color: var(--clr-text-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
  border-bottom: 3px solid var(--clr-altin);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--clr-text-light);
  flex-shrink: 0;
}
.site-logo:hover { text-decoration: none; color: var(--clr-kopuk-light); }
.site-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--clr-altin);
  box-shadow: 0 0 10px rgba(212, 168, 75, 0.3);
}
.site-logo span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

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

/* 1. Hamburger ↔ X animated toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--clr-altin);
  cursor: pointer;
  padding: 7px 8px;
  border-radius: 4px;
  transition: background 0.2s ease;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 38px;
}
.nav-toggle:hover {
  background: rgba(212, 168, 75, 0.15);
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-altin);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
/* X state when menu is open */
.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 3. FIX — align-items: center ensures Ana Sayfa aligns with other items */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
}
.nav-menu li {
  position: relative;
  list-style: none;
}
.nav-menu li + li { margin-top: 0; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  color: var(--clr-kum);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1.3;
  transition: background 0.25s ease, color 0.25s ease;
  position: relative;
}
/* Underline effect */
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--clr-altin);
  transition: width 0.3s ease, left 0.3s ease;
  pointer-events: none;
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  width: 70%;
  left: 15%;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  background: rgba(255,255,255,0.07);
  color: var(--clr-white);
  text-decoration: none;
}

/* 4. DROPDOWN CHEVRON MARKERS */
.nav-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}
/* Desktop hover — chevron rotates open */
.has-dropdown:hover > a .nav-chevron,
.has-dropdown > a:focus .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
/* Mobile — chevron rotates on toggle */
.has-dropdown.dropdown-open > a .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* ============================================
   DESKTOP DROPDOWN — smooth animation
   ============================================ */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--clr-deniz);
  border: 1px solid var(--clr-deniz-mid);
  border-top: 2px solid var(--clr-altin);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 220px;
  padding: 6px 0;
  box-shadow: var(--shadow-hover);
  z-index: 110;
  list-style: none;
  /* 2. SMOOTH ANIMATION */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}
.nav-dropdown li { margin-top: 0; }
.nav-dropdown li + li { margin-top: 0; }
.nav-dropdown a {
  display: block;
  padding: 9px 18px;
  color: var(--clr-kum);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.nav-dropdown a:hover {
  background: var(--clr-deniz-mid);
  color: var(--clr-white);
  text-decoration: none;
  padding-left: 22px;
}
/* Desktop hover opens dropdown smoothly */
li.has-dropdown:hover > .nav-dropdown,
li.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================================
   MOBILE NAV — smooth animation
   ============================================ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    /* 2. SMOOTH ANIMATION — always flex, use opacity/transform for animation */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--clr-deniz-derin);
    border-top: 2px solid var(--clr-altin);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu > li > a {
    padding: 12px 24px;
    font-size: 0.92rem;
  }
  .nav-menu > li > a::after { display: none; }

  /* Mobile dropdown — smooth slide-open */
  .nav-dropdown {
    position: static;
    border: none;
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    min-width: 0;
    padding: 0;
    background: rgba(0,0,0,0.15);
    /* Hidden — use max-height for slide animation */
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.35s ease, opacity 0.3s ease, visibility 0.3s;
    pointer-events: none;
  }
  .nav-dropdown a {
    padding: 10px 24px 10px 40px;
    font-size: 0.85rem;
  }
  .nav-dropdown a:hover {
    padding-left: 44px;
  }

  /* 4. Mobile: clicking parent opens submenu, not navigate */
  li.has-dropdown.dropdown-open > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    pointer-events: auto;
  }

  /* Disable desktop hover behavior on mobile */
  li.has-dropdown:hover > .nav-dropdown,
  li.has-dropdown:focus-within > .nav-dropdown {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    pointer-events: none;
  }
  li.has-dropdown.dropdown-open:hover > .nav-dropdown,
  li.has-dropdown.dropdown-open:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    pointer-events: auto;
  }
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 14px 0 8px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.breadcrumbs a {
  color: var(--clr-text-sea);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--clr-kopuk); }
.breadcrumbs span { margin: 0 6px; color: var(--clr-border); }

/* ============================================
   HERO — Deep sea atmosphere
   ============================================ */
.hero {
  position: relative;
  background: var(--clr-deniz-derin);
  color: var(--clr-white);
  padding: 0;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11, 26, 46, 0.3) 0%,
      rgba(11, 26, 46, 0.6) 50%,
      rgba(11, 26, 46, 0.92) 100%
    );
  z-index: 2;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0,30 C200,55 400,5 600,30 C800,55 1000,5 1200,30 L1200,60 L0,60 Z' fill='%23f7f3ec'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: cover;
  z-index: 4;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 3.5rem 20px 4rem;
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  color: var(--clr-white);
  font-size: 2.7rem;
  margin-bottom: 0.6em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  line-height: 1.2;
}
.hero h1::after { display: none; }
.hero p {
  font-size: 1.12rem;
  color: var(--clr-kum);
  margin-bottom: 1.5em;
  line-height: 1.75;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.hero .btn { margin-top: 0.5em; }

@media (max-width: 600px) {
  .hero { min-height: 300px; }
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 0.95rem; }
  .hero::after { height: 30px; }
  .hero-content { padding: 2.5rem 16px 3rem; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--clr-kopuk), var(--clr-deniz-light));
  color: var(--clr-white);
  box-shadow: 0 2px 8px var(--clr-kopuk-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--clr-kopuk-light), var(--clr-kopuk));
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--clr-kopuk-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--clr-kopuk);
  border: 2px solid var(--clr-kopuk);
}
.btn-secondary:hover {
  background: var(--clr-kopuk);
  color: var(--clr-white);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
  margin: 2rem 0;
}

.card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--clr-deniz-mid) 0%,
    var(--clr-kopuk) 40%,
    var(--clr-altin) 60%,
    var(--clr-deniz-mid) 100%
  );
  z-index: 2;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover), var(--shadow-glow);
}
.card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img {
  transform: scale(1.03);
}
.card-body {
  padding: 1.3rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--clr-white) 0%, var(--clr-kum-light) 100%);
}
.card-body h3 {
  margin-top: 0;
  font-size: 1.15rem;
  margin-bottom: 0.5em;
  color: var(--clr-deniz);
}
.card-body h3 a {
  color: var(--clr-deniz);
  text-decoration: none;
}
.card-body h3 a:hover { color: var(--clr-kopuk); }
.card-body p {
  color: var(--clr-text-muted);
  font-size: 0.93rem;
  flex: 1;
}
.card-footer {
  padding: 0 1.4rem 1.2rem;
}

/* ============================================
   5. INFO BLOCKS — FIXED: base styles applied
      to all variants (ipucu, dikkat) since HTML
      uses modifier class without base class
   ============================================ */
.info-block,
.info-block--ipucu,
.info-block--dikkat {
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem 1.2rem 3.6rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
  position: relative;
}
.info-block::before,
.info-block--ipucu::before,
.info-block--dikkat::before {
  position: absolute;
  left: 1.1rem;
  top: 1.2rem;
  font-weight: 700;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  line-height: 1;
}
/* Reset nested margins inside info-blocks */
.info-block p:last-child,
.info-block--ipucu p:last-child,
.info-block--dikkat p:last-child {
  margin-bottom: 0;
}
.info-block strong:first-child,
.info-block--ipucu strong:first-child,
.info-block--dikkat strong:first-child {
  display: block;
  margin-bottom: 0.3em;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* İpucu (Tip) */
.info-block--ipucu {
  background: linear-gradient(135deg, #e0f2f1 0%, #e8f5e9 100%);
  border-left: 4px solid var(--clr-kopuk);
  color: #1a4a3a;
}
.info-block--ipucu::before {
  content: "i";
  color: var(--clr-white);
  background: var(--clr-kopuk);
}

/* Dikkat (Warning) */
.info-block--dikkat {
  background: linear-gradient(135deg, #fff3e0 0%, #fff8e1 100%);
  border-left: 4px solid var(--clr-bakir);
  color: #4a2d00;
}
.info-block--dikkat::before {
  content: "!";
  color: var(--clr-white);
  background: var(--clr-bakir);
}

/* ============================================
   SEA DIVIDER — Wave pattern
   ============================================ */
.sea-divider {
  border: none;
  height: 30px;
  margin: 2.5rem 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30'%3E%3Cpath d='M0,15 C100,25 200,5 300,15 C400,25 500,5 600,15 C700,25 800,5 900,15 C1000,25 1100,5 1200,15' fill='none' stroke='%232db5a0' stroke-width='2' opacity='0.4'/%3E%3Cpath d='M0,20 C100,28 200,12 300,20 C400,28 500,12 600,20 C700,28 800,12 900,20 C1000,28 1100,12 1200,20' fill='none' stroke='%23d4a84b' stroke-width='1.5' opacity='0.3'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

/* ============================================
   ARTICLE LAYOUT
   ============================================ */
.article-header {
  margin-bottom: 2rem;
  padding: 2rem 0 1rem;
  border-bottom: 2px solid var(--clr-kum);
  position: relative;
}
.article-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-kopuk), transparent);
}
.article-header h1 {
  margin-bottom: 0.3em;
}
.article-header h1::after { display: none; }
.article-header > p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.article-meta {
  color: var(--clr-text-sea);
  font-size: 0.85rem;
  font-family: var(--font-heading);
}

.article-body {
  padding-top: 0.5rem;
}
.article-body h2 { margin-top: 2.5rem; }
.article-body p + h2 { margin-top: 2.5rem; }
.article-body img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
  box-shadow: var(--shadow-card);
}

/* Figure */
.fig {
  margin: 2rem 0;
  text-align: center;
}
.fig img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin: 0 auto;
}
.fig figcaption {
  margin-top: 0.6em;
  font-size: 0.85rem;
  color: var(--clr-text-sea);
  font-style: italic;
}

/* ============================================
   RELATED SECTION
   ============================================ */
.related-section {
  margin-top: 3rem;
  padding: 1.8rem 2rem;
  border-top: none;
  background: linear-gradient(135deg, var(--clr-kum-light) 0%, var(--clr-white) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}
.related-section h2 {
  font-size: 1.2rem;
  border-bottom: none;
  margin-bottom: 1rem;
  margin-top: 0;
  color: var(--clr-deniz);
}
.related-section h2::after {
  width: 60px;
  background: linear-gradient(90deg, var(--clr-altin), var(--clr-kopuk));
}
.related-links {
  list-style: none;
  padding: 0;
}
.related-links li {
  margin-bottom: 0.6em;
  padding-left: 1.4em;
  position: relative;
}
.related-links li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--clr-altin);
  font-weight: bold;
}
.related-links a {
  font-family: var(--font-heading);
  font-size: 0.93rem;
  color: var(--clr-deniz-mid);
}
.related-links a:hover {
  color: var(--clr-kopuk);
}

/* ============================================
   VARIATION BLOCK — Recipe panels
   ============================================ */
.variation-block {
  background: linear-gradient(145deg, var(--clr-bg-warm) 0%, var(--clr-kum-light) 100%);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin: 1.5rem 0;
  position: relative;
  border-left: 4px solid var(--clr-ahsap-light);
}
.variation-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-ahsap-surface), var(--clr-ahsap-light), var(--clr-ahsap-surface));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.variation-block h2 {
  margin-top: 0;
}
.variation-block h3 {
  margin-top: 0;
  color: var(--clr-ahsap-dark);
}

.step-list {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}
.step-list li {
  counter-increment: step;
  padding-left: 2.8em;
  position: relative;
  margin-bottom: 1em;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 2em;
  height: 2em;
  background: linear-gradient(135deg, var(--clr-deniz-mid), var(--clr-kopuk));
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 2px 6px rgba(45, 181, 160, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, var(--clr-deniz) 0%, var(--clr-deniz-derin) 100%);
  color: var(--clr-kum);
  padding: 0 0 1.5rem;
  margin-top: auto;
  position: relative;
}
.site-footer::before {
  content: '';
  display: block;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0,20 C200,40 400,0 600,20 C800,40 1000,0 1200,20 L1200,0 L0,0 Z' fill='%23f7f3ec'/%3E%3C/svg%3E") no-repeat center top;
  background-size: cover;
  margin-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  color: var(--clr-altin);
  font-size: 0.95rem;
  margin-bottom: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 0.5em;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--clr-kopuk);
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col li { margin-bottom: 0.4em; }
.footer-col li + li { margin-top: 0; }
.footer-col a {
  color: var(--clr-kum);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-col a:hover {
  color: var(--clr-kopuk-light);
  padding-left: 4px;
}
.footer-col p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--clr-kum);
  opacity: 0.85;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 168, 75, 0.15);
  padding-top: 1.2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--clr-kum);
  opacity: 0.6;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  max-width: 600px;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.35em;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-deniz);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--clr-white);
  color: var(--clr-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clr-kopuk);
  box-shadow: 0 0 0 3px var(--clr-kopuk-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg {
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}
.form-msg--ok { background: #e0f2f1; color: #1a6b4a; display: block; border: 1px solid #a8dcd0; }
.form-msg--err { background: #ffebee; color: #b83230; display: block; border: 1px solid #f0b0b0; }
.hp-field { position: absolute; left: -9999px; }

/* --- Contact Info --- */
.contact-info {
  background: linear-gradient(145deg, var(--clr-bg-warm) 0%, var(--clr-kum-light) 100%);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 4px solid var(--clr-kopuk);
}
.contact-info h2 {
  margin-top: 0;
}
.contact-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
}
.contact-info dt {
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--clr-deniz);
}
.contact-info dd {
  margin: 0;
  font-size: 0.93rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
}
.legal-content h3 {
  font-size: 1.1rem;
}
.legal-content ul {
  margin-bottom: 1em;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--clr-deniz) 0%, var(--clr-deniz-derin) 100%);
  color: var(--clr-kum);
  padding: 1.2rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid var(--clr-altin);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1;
  min-width: 260px;
  font-size: 0.88rem;
  margin-bottom: 0;
  line-height: 1.5;
}
.cookie-banner p a { color: var(--clr-kopuk-light); }
.cookie-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn--accept {
  background: linear-gradient(135deg, var(--clr-kopuk), var(--clr-deniz-light));
  color: var(--clr-white);
}
.cookie-btn--accept:hover { background: linear-gradient(135deg, var(--clr-kopuk-light), var(--clr-kopuk)); }
.cookie-btn--reject {
  background: rgba(255,255,255,0.12);
  color: var(--clr-kum);
}
.cookie-btn--reject:hover { background: rgba(255,255,255,0.2); }
.cookie-btn--settings {
  background: transparent;
  color: var(--clr-kum);
  border: 1px solid rgba(212, 168, 75, 0.4);
}
.cookie-btn--settings:hover { border-color: var(--clr-altin); color: var(--clr-altin); }

/* Cookie Settings Modal */
.cookie-settings-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 26, 46, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.cookie-settings-overlay.visible { display: flex; }
.cookie-settings-modal {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0,0,0,0.4);
  border-top: 3px solid var(--clr-kopuk);
}
.cookie-settings-modal h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--clr-deniz);
}
.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--clr-kum);
}
.cookie-option:last-of-type { border-bottom: none; }
.cookie-option label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-deniz);
}
.cookie-option p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin: 0.2em 0 0;
}
.cookie-option input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--clr-kopuk);
}
.cookie-save-btn {
  margin-top: 1rem;
  width: 100%;
}

/* ============================================
   WOOD PANEL — Fish market board
   ============================================ */
.wood-panel {
  background:
    linear-gradient(135deg,
      var(--clr-ahsap-surface) 0%,
      var(--clr-ahsap-light) 25%,
      var(--clr-ahsap-mid) 50%,
      var(--clr-ahsap-light) 75%,
      var(--clr-ahsap-surface) 100%
    );
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--clr-ahsap);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.12), var(--shadow-card);
  color: var(--clr-bg-warm);
  position: relative;
}
.wood-panel::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
}
.wood-panel h2 {
  color: var(--clr-altin-light);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.wood-panel h2::after {
  background: linear-gradient(90deg, var(--clr-altin), transparent);
}
.wood-panel li {
  color: var(--clr-kum-light);
}
.wood-panel strong {
  color: var(--clr-altin-light);
}

/* ============================================
   SECTION INTRO
   ============================================ */
.section-intro {
  font-size: 1.08rem;
  color: var(--clr-text-muted);
  max-width: 720px;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--clr-kopuk);
}

/* ============================================
   WAVE BOTTOM DECORATION
   ============================================ */
.wave-bottom {
  position: relative;
}
.wave-bottom::after {
  content: '';
  display: block;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0,10 C200,30 400,0 600,15 C800,30 1000,0 1200,10 L1200,40 L0,40 Z' fill='%232db5a0' opacity='0.08'/%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
}

/* ============================================
   ERROR ITEMS (sık hatalar)
   ============================================ */
.error-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.3rem;
  margin-bottom: 1.2rem;
  border-left: 4px solid var(--clr-danger);
  transition: box-shadow 0.2s ease;
}
.error-item:hover {
  box-shadow: var(--shadow-card);
}
.error-item h3 {
  margin-top: 0;
  color: var(--clr-danger);
  font-size: 1.05rem;
}
.error-item .solution {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--clr-border);
}
.error-item .solution h4 {
  color: var(--clr-success);
  font-size: 0.95rem;
  margin-bottom: 0.3em;
}

/* ============================================
   FOG TEXTURE
   ============================================ */
.fog-section {
  position: relative;
}
.fog-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(30, 90, 138, 0.06) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.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;
}

/* --- Two-column layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* ============================================
   5. RESPONSIVE — comprehensive mobile fixes
   ============================================ */

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.4rem;
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }

  .container { padding: 0 16px; }

  .article-header {
    padding: 1.5rem 0 1rem;
  }
  .article-header h1 { font-size: 1.7rem; }

  /* Two-col stacks on tablet */
  .two-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Contact form full width on smaller screens */
  .contact-form { max-width: 100%; }

  /* Info blocks: reduce left padding on smaller screens */
  .info-block,
  .info-block--ipucu,
  .info-block--dikkat {
    padding: 1rem 1rem 1rem 3.2rem;
    margin: 1.2rem 0;
    font-size: 0.92rem;
  }
  .info-block::before,
  .info-block--ipucu::before,
  .info-block--dikkat::before {
    left: 0.9rem;
    top: 1rem;
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }

  /* Variation block */
  .variation-block {
    padding: 1.4rem;
  }

  /* Related section */
  .related-section {
    padding: 1.4rem;
    margin-top: 2rem;
  }

  /* Wood panel */
  .wood-panel {
    padding: 1.5rem;
  }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
  }

  /* Cards smaller image */
  .card-img { height: 180px; }

  /* Sea divider */
  .sea-divider { margin: 1.8rem 0; }

  /* Step list */
  .step-list li {
    padding-left: 2.4em;
  }
  .step-list li::before {
    width: 1.8em;
    height: 1.8em;
    font-size: 0.8rem;
  }

  /* Contact info */
  .contact-info {
    padding: 1.2rem;
  }
  .contact-info dl {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .contact-info dt {
    margin-top: 0.6rem;
  }
  .contact-info dt:first-child {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  body { font-size: 15px; }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }

  .container { padding: 0 12px; }

  /* Cards single column */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* Footer stacks to single column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* Breadcrumbs smaller */
  .breadcrumbs { font-size: 0.75rem; padding: 10px 0 6px; }

  /* Cookie banner */
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  .cookie-banner p { min-width: auto; }
  .cookie-buttons {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
  }

  /* Cookie modal */
  .cookie-settings-modal {
    padding: 1.5rem;
  }

  /* Buttons full width */
  .article-body .btn {
    display: block;
    text-align: center;
  }

  /* Info blocks compact */
  .info-block,
  .info-block--ipucu,
  .info-block--dikkat {
    padding: 0.9rem 0.9rem 0.9rem 2.8rem;
    font-size: 0.88rem;
  }
  .info-block::before,
  .info-block--ipucu::before,
  .info-block--dikkat::before {
    left: 0.7rem;
    top: 0.9rem;
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
  }

  /* Logo text hidden on very small */
  .site-logo span {
    font-size: 1rem;
  }
}

/* ============================================
   2. CARD LINKS — no underline ever
   ============================================ */
.card,
.card:hover,
.card:focus,
.card:active,
.card:visited {
  text-decoration: none;
  color: inherit;
}
.card-body h3,
.card-body p {
  text-decoration: none;
}

/* ============================================
   4. ACTIVE NAV STATE — highlighted current page
   ============================================ */
.nav-menu > li > a.active {
  color: var(--clr-white);
  background: rgba(255,255,255,0.1);
}
.nav-dropdown a.active {
  color: var(--clr-kopuk-light);
  background: rgba(45, 181, 160, 0.1);
}

/* ============================================
   5. CONTACT FORM CARD — standalone element
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1rem;
}

.contact-form-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--clr-kopuk), var(--clr-altin));
}
.contact-form-card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--clr-kum);
}
.contact-form-card-header h2 {
  margin-top: 0;
  margin-bottom: 0.3em;
}
.contact-form-card-header p {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 1.5rem;
  }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .site-header, .site-footer, .cookie-banner,
  .cookie-settings-overlay, .breadcrumbs { display: none; }
  body { font-size: 12pt; background: white; }
  .page-content { padding: 0; }
  a { color: inherit; }
  .hero::after, .site-footer::before { display: none; }
}
