/* ============================================
   Okuma Kulübü Rehberi — Main Stylesheet
   Palette: coffee / caramel / cream + graphite
   ============================================ */

/* --- Custom Properties --- */
:root {
  --coffee-dark: #2C1810;
  --coffee: #4A2C17;
  --coffee-medium: #6B4226;
  --caramel: #A0704E;
  --caramel-light: #C4956A;
  --cream: #F5E6D0;
  --cream-light: #FAF3EA;
  --cream-bg: #FDF8F2;
  --graphite: #2D2D2D;
  --graphite-light: #4A4A4A;
  --text-primary: #2D2D2D;
  --text-secondary: #5A5A5A;
  --amber: #B8860B;
  --amber-hover: #9A7209;
  --white: #FFFFFF;
  --success: #4A7C59;
  --error: #9B3B3B;
  --font-heading: Georgia, 'Times New Roman', 'Noto Serif', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --content-width: 800px;
  --header-height: 64px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(44,24,16,.06);
  --shadow-md: 0 4px 16px rgba(44,24,16,.08);
  --shadow-lg: 0 8px 32px rgba(44,24,16,.12);
  --transition: .3s ease;
}

/* --- Reset / Base --- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--cream-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber-hover); }
a:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 2px; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
button:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 2px; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--coffee);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .75rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: .5rem; }
p + p { margin-top: 1rem; }

/* --- Utility --- */
.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; }
.text-center { text-align: center; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.content-narrow { max-width: var(--content-width); margin: 0 auto; }

/* --- Header (sticky) --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--coffee-dark);
  box-shadow: 0 2px 12px rgba(44,24,16,.25);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700;
  color: var(--cream) !important;
  letter-spacing: .02em;
  white-space: nowrap;
}
.logo:hover { color: var(--caramel-light) !important; }
.main-nav ul { display: flex; gap: .25rem; align-items: center; }
.main-nav a {
  display: block; padding: .5rem .75rem;
  color: var(--cream-light); font-size: .9rem;
  border-radius: var(--radius); transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a.active { background: rgba(245,230,208,.12); color: var(--caramel-light); }

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0;
}
.menu-toggle span {
  display: block; height: 2px; background: var(--cream);
  border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero (home) --- */
.hero-home {
  position: relative;
  background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee) 50%, var(--coffee-medium) 100%);
  color: var(--cream-light);
  padding: 5rem 0 4rem;
  overflow: hidden;
  text-align: center;
}
.hero-home::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196,149,106,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(184,134,11,.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-home h1 { color: var(--cream); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .75rem; }
.hero-home .hero-subtitle { color: var(--caramel-light); font-size: 1.15rem; max-width: 600px; margin: 0 auto 2rem; }
.hero-home .hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Hero (page) --- */
.page-hero {
  background: linear-gradient(180deg, var(--coffee-dark) 0%, var(--coffee) 100%);
  color: var(--cream-light);
  padding: 3rem 0 2.5rem;
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--cream-bg));
  pointer-events: none;
}
.page-hero h1 { color: var(--cream); margin-bottom: .5rem; }
.page-hero .hero-subtitle { color: var(--caramel-light); font-size: 1.05rem; }

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 0;
  font-size: .85rem;
  color: var(--text-secondary);
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .25rem; align-items: center; }
.breadcrumbs li + li::before { content: '›'; margin-right: .25rem; color: var(--caramel); }
.breadcrumbs a { color: var(--coffee-medium); }
.breadcrumbs a:hover { color: var(--amber); }
.breadcrumbs [aria-current="page"] { color: var(--text-secondary); font-weight: 500; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.5rem;
  font-size: .95rem; font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center; justify-content: center;
}
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.btn-primary {
  background: var(--amber); color: var(--white);
}
.btn-primary:hover { background: var(--amber-hover); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--cream); color: var(--coffee);
  border: 1px solid var(--caramel-light);
}
.btn-secondary:hover { background: var(--caramel-light); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 2px solid var(--caramel-light);
}
.btn-outline:hover { background: var(--caramel-light); color: var(--white); }

/* --- Content Sections --- */
.content-section {
  padding: 3rem 0;
  position: relative;
}
.content-section:nth-child(even) {
  background: radial-gradient(ellipse at 50% 0%, rgba(212,165,116,.06) 0%, transparent 70%);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--coffee);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: .75rem;
}
.section-title::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--caramel), var(--caramel-light));
  border-radius: 2px;
}
.text-center .section-title::after { left: 50%; transform: translateX(-50%); }
.section-subtitle { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 2rem; }
.lead { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; }

/* --- Decorative: Coffee Ring --- */
.coffee-ring { position: relative; }
.coffee-ring::before {
  content: '';
  position: absolute;
  width: clamp(60px, 8vw, 100px);
  height: clamp(60px, 8vw, 100px);
  border-radius: 50%;
  border: 2px solid rgba(160,112,78,.06);
  box-shadow: inset 0 0 15px rgba(160,112,78,.03);
  pointer-events: none; z-index: 0;
  top: clamp(-15px, -2vw, -20px);
  right: clamp(-15px, -2vw, -20px);
}
@media (max-width: 768px) {
  .coffee-ring::before {
    display: none;
  }
}

/* --- Decorative: Bookmark Accent --- */
.bookmark-accent { position: relative; overflow: visible; }
.bookmark-accent::after {
  content: '';
  position: absolute;
  top: -6px; right: 24px;
  width: 22px; height: 36px;
  background: var(--caramel);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
  opacity: .6;
  pointer-events: none;
}

/* --- Decorative: Divider --- */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--caramel-light), transparent);
  margin: 2.5rem 0;
}

.decorative-line {
  display: flex; align-items: center; gap: 1rem;
  margin: 2rem 0; color: var(--caramel);
}
.decorative-line::before,
.decorative-line::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--caramel-light));
}
.decorative-line::after {
  background: linear-gradient(90deg, var(--caramel-light), transparent);
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card-grid-2 { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); }

/* --- Review Card (menu-card style) --- */
.review-card, .card {
  background: var(--white);
  border: 1px solid rgba(160,112,78,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(44,24,16,.08);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.review-card::after, .card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--caramel) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.review-card:hover::after, .card:hover::after {
  transform: scaleX(1);
}
.review-card:hover, .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(44,24,16,.15);
  border-color: rgba(160,112,78,.15);
}
.card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--transition);
}
.review-card:hover .card-image,
.card:hover .card-image {
  transform: scale(1.05);
}
.card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, var(--white) 0%, var(--cream-bg) 100%);
}
.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem; color: var(--coffee);
  margin-bottom: .5rem;
}
.card-meta {
  font-size: .8rem; color: var(--text-secondary);
  margin-bottom: .75rem; display: flex; gap: .75rem; flex-wrap: wrap;
}
.card-meta span { display: inline-flex; align-items: center; gap: .25rem; }
.card-text { color: var(--text-secondary); font-size: .95rem; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1rem; font-weight: 600; font-size: .9rem;
  color: var(--amber); padding: .3rem 0;
}
.card-link:hover { color: var(--amber-hover); }

/* --- Genre Card --- */
.genre-card {
  background: var(--cream-light);
  border: 1px solid rgba(160,112,78,.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
}
.genre-card:hover {
  transform: translateY(-2px);
  border-color: var(--caramel);
}
.genre-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.genre-card p { font-size: .9rem; color: var(--text-secondary); }

/* --- Format Card --- */
.format-card {
  background: var(--white);
  border-left: 4px solid var(--caramel);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.format-card:hover { transform: translateX(4px); }
.format-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.format-card p { font-size: .95rem; color: var(--text-secondary); }

/* --- Method Steps --- */
.method-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem 0;
}
.method-step + .method-step { border-top: 1px solid rgba(160,112,78,.1); }
.method-step-number {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--coffee);
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
}
.method-step-content h3 { margin-bottom: .35rem; }
.method-step-content p { color: var(--text-secondary); font-size: .95rem; }

/* --- Review Detail --- */
.review-section {
  background: var(--white);
  border: 1px solid rgba(160,112,78,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.review-header { margin-bottom: 1.25rem; }
.review-header h2 {
  font-size: 1.4rem; color: var(--coffee);
  margin-bottom: .25rem;
}
.review-meta {
  font-size: .85rem; color: var(--text-secondary);
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.review-body { margin-bottom: 1.5rem; }
.review-body p { margin-bottom: .75rem; color: var(--text-primary); font-size: .95rem; line-height: 1.8; }
.review-questions {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 4px solid var(--caramel);
}
.review-questions h3 {
  font-size: 1.1rem; color: var(--coffee);
  margin-bottom: 1rem;
}
.question-list { counter-reset: q; }
.question-list li {
  counter-increment: q;
  padding: .5rem 0 .5rem 1.75rem;
  position: relative;
  font-size: .95rem; color: var(--text-primary); line-height: 1.6;
}
.question-list li::before {
  content: counter(q) '.';
  position: absolute; left: 0;
  font-weight: 700; color: var(--caramel);
  font-family: var(--font-heading);
}
.question-list li + li { border-top: 1px dashed rgba(160,112,78,.15); }

/* --- FAQ --- */
.faq-list { max-width: var(--content-width); margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(160,112,78,.1);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%; text-align: left;
  padding: 1.15rem 3rem 1.15rem 1.25rem;
  font-size: 1rem; font-weight: 600;
  color: var(--coffee);
  background: transparent;
  position: relative;
  font-family: var(--font-body);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--cream-light); }
.faq-question::after {
  content: '+';
  position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.3rem; color: var(--caramel);
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.25rem 1.25rem;
}
.faq-answer p { color: var(--text-secondary); font-size: .95rem; }

/* --- Contact Form --- */
.contact-form {
  max-width: 650px;
  margin: 2rem auto;
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(44,24,16,.1);
  border: 1px solid rgba(160,112,78,.1);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--caramel) 100%);
}
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.form-label {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--coffee);
  transition: color var(--transition);
}
.form-label .required {
  color: var(--error);
  margin-left: .2rem;
  font-weight: 700;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(160,112,78,.15);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--cream-bg);
  color: var(--text-primary);
  transition: all var(--transition);
}
.form-input:hover,
.form-textarea:hover {
  border-color: rgba(160,112,78,.3);
  background: var(--white);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(184,134,11,.15);
  transform: translateY(-1px);
}
.form-input.error,
.form-textarea.error {
  border-color: var(--error);
  background: #fef2f2;
}
.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: .75rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.form-checkbox:hover {
  background: rgba(245,230,208,.3);
}
.form-checkbox input[type="checkbox"] {
  margin-top: .3rem;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--amber);
  cursor: pointer;
}
.form-field-error {
  color: var(--error);
  font-size: .85rem;
  margin-top: .4rem;
  display: none;
}
.form-field-error:not(:empty) {
  display: block;
}
.form-message {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 500;
  margin-top: 1.5rem;
  display: none;
  box-shadow: var(--shadow-sm);
}
.form-message.form-success {
  display: block;
  background: #e8f5e9;
  color: var(--success);
  border: 2px solid #81c784;
}
.form-message.form-error {
  display: block;
  background: #fce4ec;
  color: var(--error);
  border: 2px solid #e57373;
}
.form-field-error {
  font-size: .8rem; color: var(--error); margin-top: .25rem; display: none;
}
.ohnohoney { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* --- Contact Info --- */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact-info-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(160,112,78,.08);
  box-shadow: 0 4px 16px rgba(44,24,16,.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--caramel) 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.contact-info-item:hover::before {
  transform: scaleX(1);
}
.contact-info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44,24,16,.12);
  border-color: rgba(160,112,78,.15);
}
.contact-info-item .ci-icon {
  font-size: 2rem;
  margin: 0 auto 1rem;
  color: var(--amber);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,134,11,.1);
  border-radius: 50%;
  transition: all var(--transition);
}
.contact-info-item:hover .ci-icon {
  background: rgba(184,134,11,.2);
  transform: scale(1.1) rotate(5deg);
}
.contact-info-item h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--coffee);
}
.contact-info-item p {
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--coffee-dark);
  color: var(--cream-light);
  padding: 1.25rem;
  box-shadow: 0 -4px 20px rgba(44,24,16,.3);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 250px; font-size: .9rem; }
.cookie-text a { color: var(--caramel-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-buttons .btn { padding: .55rem 1.1rem; font-size: .85rem; }
.cookie-btn-accept { background: var(--amber); color: var(--white); border-radius: var(--radius); }
.cookie-btn-accept:hover { background: var(--amber-hover); }
.cookie-btn-reject { background: rgba(245,230,208,.15); color: var(--cream); border-radius: var(--radius); }
.cookie-btn-reject:hover { background: rgba(245,230,208,.25); }
.cookie-btn-settings { background: transparent; color: var(--caramel-light); border: 1px solid var(--caramel-light); border-radius: var(--radius); }
.cookie-btn-settings:hover { background: rgba(196,149,106,.15); }

/* --- Cookie Settings Modal --- */
.cookie-settings-modal {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(44,24,16,.6);
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.cookie-settings-modal.open { display: flex; }
.cookie-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 500px; width: 100%;
  padding: 2rem;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.cookie-modal-content h2 { font-size: 1.3rem; margin-bottom: 1.25rem; }
.cookie-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(160,112,78,.1);
}
.cookie-option:last-of-type { border-bottom: none; }
.cookie-option-info h3 { font-size: .95rem; margin-bottom: .15rem; }
.cookie-option-info p { font-size: .8rem; color: var(--text-secondary); }
/* Toggle switch */
.toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: #ccc; border-radius: 24px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute; left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: var(--white); border-radius: 50%;
  transition: transform var(--transition);
}
.toggle input:checked + .toggle-slider { background: var(--amber); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle input:disabled + .toggle-slider { opacity: .6; cursor: not-allowed; }
.cookie-modal-buttons { margin-top: 1.25rem; display: flex; gap: .75rem; justify-content: flex-end; }

/* --- Footer --- */
.site-footer {
  background: var(--coffee-dark);
  color: var(--cream-light);
  padding: 3rem 0 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h3 {
  font-size: 1rem; color: var(--cream);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--coffee-medium);
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: var(--caramel-light); font-size: .9rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--cream); padding-left: 4px; }
.footer-contact p { font-size: .9rem; color: var(--caramel-light); margin-bottom: .35rem; }
.footer-bottom {
  border-top: 1px solid var(--coffee-medium);
  padding: 1.25rem 0;
  text-align: center;
  font-size: .8rem; color: var(--graphite-light);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--coffee); color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 50;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--coffee-medium); transform: translateY(-2px); }

/* --- Intro Block (for pages) --- */
.intro-block {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream-bg) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 2px solid rgba(160,112,78,.08);
  box-shadow: 0 6px 24px rgba(44,24,16,.08);
  position: relative;
  overflow: hidden;
}
.intro-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--amber) 0%, var(--caramel) 100%);
}
.intro-block p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- Feature Row (home page) --- */
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.feature-item {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(160,112,78,.08);
  transition: transform var(--transition);
}
.feature-item:hover { transform: translateY(-2px); }
.feature-icon {
  width: 56px; height: 56px; margin: 0 auto .75rem;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.feature-item h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.feature-item p { font-size: .9rem; color: var(--text-secondary); }

/* --- Legal pages --- */
.legal-content h2 { margin-top: 2rem; margin-bottom: .75rem; font-size: 1.3rem; }
.legal-content h3 { margin-top: 1.5rem; margin-bottom: .5rem; font-size: 1.1rem; }
.legal-content p { margin-bottom: .75rem; color: var(--text-secondary); font-size: .95rem; }
.legal-content ul { margin: .5rem 0 1rem 1.5rem; }
.legal-content ul li { list-style: disc; color: var(--text-secondary); font-size: .95rem; padding: .2rem 0; }

/* --- Mood Tags --- */
.mood-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.mood-tag {
  padding: .3rem .75rem;
  background: var(--cream);
  border: 1px solid rgba(160,112,78,.15);
  border-radius: 20px;
  font-size: .8rem; color: var(--coffee-medium);
}

/* --- Animations --- */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Review with Cover --- */
.review-with-cover {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.review-cover {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.review-cover img {
  max-width: 200px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(44,24,16,.2);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}
.review-cover img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 48px rgba(44,24,16,.3);
}
.review-main {
  flex: 1;
}

/* --- Image Text Section --- */
.image-text-section {
  margin: 3rem 0;
}
.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.image-text-grid.reverse {
  direction: rtl;
}
.image-text-grid.reverse > * {
  direction: ltr;
}
.image-text-content {
  padding: 1.5rem;
}
.image-text-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.image-text-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(139,69,19,.15);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
  margin: 0 auto;
}
.image-text-image img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(139,69,19,.25);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed; top: var(--header-height); left: 0; right: 0;
    background: var(--coffee-dark);
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
    box-shadow: 0 4px 12px rgba(44,24,16,.3);
  }
  .main-nav.open { max-height: 400px; }
  .main-nav ul { flex-direction: column; padding: .5rem 1rem 1rem; }
  .main-nav a { padding: .75rem 1rem; }
  .hero-home { padding: 3rem 0 2.5rem; }
  .page-hero { padding: 2rem 0 1.75rem; }
  .review-section { padding: 1.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .image-text-grid { grid-template-columns: 1fr; gap: 2rem; }
  .image-text-grid.reverse { direction: ltr; }
  .review-with-cover {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .review-cover img {
    max-width: 220px;
    margin: 0 auto;
  }
  .contact-form {
    padding: 2rem 1.5rem;
    margin: 1.5rem auto;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 1rem; }
  .content-section { padding: 2rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .contact-form {
    padding: 1.5rem 1.25rem;
    margin: 1rem 0;
  }
  .image-text-image {
    padding: 0.5rem;
  }
  .review-cover img {
    max-width: 180px;
  }
  .method-step { flex-direction: column; gap: .75rem; }
}

/* --- Accessibility: 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;
  }
  .fade-in { opacity: 1; transform: none; }
  .cookie-banner { transition: none; }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .cookie-banner, .back-to-top, .cookie-settings-modal { display: none !important; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}
