/* ========================================
   Tatlı Dengesi Rehberi — styles.css
   Karanlik Pastane + Altin Seker Isigi
   ======================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-bg: #1a1612;
  --color-bg-alt: #231e19;
  --color-surface: #2c2520;
  --color-surface-light: #3a322b;
  --color-cream: #f5ede0;
  --color-cream-panel: #faf6ee;
  --color-gold: #d4a843;
  --color-gold-light: #e8c46e;
  --color-gold-dim: #a07c2e;
  --color-amber: #c8943a;
  --color-text: #ede5d8;
  --color-text-muted: #b8afa3;
  --color-text-dark: #2c2520;
  --color-border: rgba(212,168,67,.2);
  --color-border-strong: rgba(212,168,67,.4);
  --color-error: #d44;
  --color-success: #4a3;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.25);
  --shadow-md: 0 4px 20px rgba(0,0,0,.35);
  --shadow-gold: 0 0 20px rgba(212,168,67,.15);
  --transition: .3s ease;
  --max-w: 1100px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-gold);
  color: var(--color-bg);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  z-index: 10000;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus {
  top: 12px;
}

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

a {
  color: var(--color-gold-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-gold); }

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

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--color-cream);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p + p { margin-top: 1em; }

/* ---------- Layout ---------- */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}
.section--cream {
  background: var(--color-cream-panel);
  color: var(--color-text-dark);
}
.section--cream h2,
.section--cream h3 {
  color: var(--color-text-dark);
}
.section--cream a {
  color: var(--color-gold-dim);
}

.section__title {
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}
.section__subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 48px;
  font-size: 1.05rem;
}
.section--cream .section__subtitle {
  color: #6b6056;
}

/* ---------- Gold Divider ---------- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 16px auto 0;
}

/* ---------- Header / Navbar ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,22,18,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.header__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-cream);
  font-weight: 700;
  letter-spacing: .02em;
}
.header__logo span {
  color: var(--color-gold);
}

/* Desktop nav */
.nav__list {
  display: flex;
  list-style: none;
  gap: 6px;
}
.nav__link {
  display: block;
  padding: 8px 14px;
  font-size: .9rem;
  color: var(--color-text-muted);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--color-gold);
  background: rgba(212,168,67,.08);
}

/* Hamburger */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  padding: 0;
  flex-shrink: 0;
}
.nav__toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  position: absolute;
  left: 7px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle .bar:nth-child(1) { top: 9px; }
.nav__toggle .bar:nth-child(2) { top: 17px; }
.nav__toggle .bar:nth-child(3) { top: 25px; }
.nav__toggle.open .bar:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav__toggle.open .bar:nth-child(2) { opacity: 0; }
.nav__toggle.open .bar:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* Body scroll lock when nav open */
body.nav-open {
  overflow: hidden;
}

@media(max-width:900px) {
  .nav__toggle { display: block; }
  .nav {
    position: fixed;
    top: 68px; right: -100%;
    width: 280px;
    height: calc(100vh - 68px);
    background: var(--color-bg-alt);
    border-left: 1px solid var(--color-border);
    transition: right var(--transition);
    overflow-y: auto;
    padding: 24px 0;
  }
  .nav.open { right: 0; }
  .nav__list {
    flex-direction: column;
    gap: 0;
  }
  .nav__link {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 0;
  }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(212,168,67,.08), transparent),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  z-index: 0;
}
/* Geometric "tatli dilimi" lines */
.hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(212,168,67,.06);
  border-radius: 50%;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero__badge {
  display: inline-block;
  background: rgba(212,168,67,.12);
  color: var(--color-gold);
  font-size: .85rem;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(212,168,67,.25);
  margin-bottom: 24px;
  letter-spacing: .03em;
}
.hero h1 {
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-gold);
}
.hero__desc {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero__cta {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
  color: var(--color-bg);
  font-weight: 700;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--color-bg);
}

/* ---------- Content Images ---------- */
.content-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid var(--color-border);
}
.section--cream .content-img {
  border-color: #ddd5c8;
}

/* ---------- Placeholder Panels (CSS art) ---------- */
.placeholder-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 220px;
}
.placeholder-panel--seker {
  background: linear-gradient(135deg, #3a322b 0%, #2c2520 40%, rgba(212,168,67,.15) 100%);
}
.placeholder-panel--seker::after {
  content: '';
  position: absolute;
  top: 20%; right: 10%;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(232,196,110,.35), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}
.placeholder-panel--bakir {
  background: linear-gradient(160deg, #4a3828 0%, #2c2520 60%, rgba(168,120,50,.2) 100%);
}
.placeholder-panel--bakir::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(212,168,67,.08), transparent);
}
.placeholder-panel--sutlu {
  background: linear-gradient(145deg, #f5ede0 0%, #e8dfd0 50%, #d4cbb8 100%);
}
.placeholder-panel__label {
  position: absolute;
  bottom: 16px; left: 20px;
  font-size: .8rem;
  color: var(--color-text-muted);
  font-style: italic;
  opacity: .7;
}
.section--cream .placeholder-panel__label {
  color: #8a7f72;
}

/* ---------- Two Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col--reverse .two-col__visual { order: -1; }

@media(max-width:768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .two-col--reverse .two-col__visual { order: 0; }
}

/* ---------- Toggle Switch (Sutlu / Serbetli) ---------- */
.toggle-box {
  max-width: 680px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.section--cream .toggle-box {
  background: #fff;
  border-color: #ddd5c8;
}
.toggle-switch {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
  background: var(--color-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.section--cream .toggle-switch {
  background: #ede5d8;
  border-color: #ccc3b5;
}
.toggle-switch__btn {
  flex: 1;
  padding: 12px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: var(--transition);
}
.section--cream .toggle-switch__btn {
  color: #8a7f72;
}
.toggle-switch__btn.active {
  background: var(--color-gold);
  color: var(--color-bg);
}

/* Intensity picker */
.intensity-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.intensity-row span {
  font-size: .9rem;
  color: var(--color-text-muted);
}
.section--cream .intensity-row span {
  color: #6b6056;
}
.intensity-btn {
  padding: 8px 20px;
  border: 1px solid var(--color-border-strong);
  background: transparent;
  color: var(--color-text);
  border-radius: 20px;
  cursor: pointer;
  font-size: .85rem;
  transition: var(--transition);
}
.section--cream .intensity-btn {
  color: var(--color-text-dark);
  border-color: #ccc3b5;
}
.intensity-btn.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-bg);
}
.toggle-result {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 100px;
}
.section--cream .toggle-result {
  background: #f5ede0;
}
.toggle-result__title {
  font-family: var(--font-heading);
  color: var(--color-gold);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.section--cream .toggle-result__title {
  color: var(--color-gold-dim);
}
.toggle-result__text {
  font-size: .95rem;
  line-height: 1.6;
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-cream);
  text-align: left;
  cursor: pointer;
  position: relative;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--color-gold);
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-gold);
  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-answer__inner {
  padding: 0 0 20px;
  font-size: .95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.section--cream .faq-item {
  border-color: #ccc3b5;
}
.section--cream .faq-question {
  color: var(--color-text-dark);
}
.section--cream .faq-question:hover {
  color: var(--color-gold-dim);
}
.section--cream .faq-question::after {
  color: var(--color-gold-dim);
}
.section--cream .faq-answer__inner {
  color: #5a5047;
}

/* ---------- Allergen Notes ---------- */
.allergen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.allergen-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.allergen-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}
.allergen-card__icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.allergen-card__icon svg {
  width: 36px; height: 36px;
}
.allergen-card__name {
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 4px;
}
.allergen-card__desc {
  font-size: .85rem;
  color: var(--color-text-muted);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: 12px;
}
.footer__brand span { color: var(--color-gold); }
.footer__desc {
  font-size: .9rem;
  color: var(--color-text-muted);
  max-width: 340px;
}
.footer__heading {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.footer__links {
  list-style: none;
}
.footer__links li + li { margin-top: 8px; }
.footer__links a {
  font-size: .9rem;
  color: var(--color-text-muted);
}
.footer__links a:hover { color: var(--color-gold); }
.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  text-align: center;
  font-size: .85rem;
  color: var(--color-text-muted);
}

@media(max-width:768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------- Page Header (tech pages) ---------- */
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg-alt), var(--color-bg));
}
.page-header h1 {
  margin-bottom: 12px;
}
.page-header p {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Content Page ---------- */
.page-content {
  padding: 60px 0 80px;
}
.page-content .container {
  max-width: 820px;
}
.prose h2 {
  margin: 40px 0 16px;
  font-size: 1.4rem;
}
.prose h3 {
  margin: 32px 0 12px;
  font-size: 1.15rem;
}
.prose p {
  margin-bottom: 16px;
  color: var(--color-text-muted);
}
.prose ul, .prose ol {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--color-text-muted);
}
.prose li + li {
  margin-top: 8px;
}
.prose strong {
  color: var(--color-cream);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media(max-width:768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 44px; height: 44px;
  background: rgba(212,168,67,.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg {
  width: 20px; height: 20px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2;
}
.contact-info__label {
  font-size: .8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.contact-info__value {
  color: var(--color-cream);
  font-size: .95rem;
}

/* ---------- Form ---------- */
.form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form__group {
  margin-bottom: 20px;
}
.form__label {
  display: block;
  font-size: .9rem;
  color: var(--color-cream);
  margin-bottom: 6px;
  font-weight: 600;
}
.form__label .required {
  color: var(--color-gold);
  margin-left: 2px;
}
.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color var(--transition);
}
.form__input:focus,
.form__textarea:focus {
  border-color: var(--color-gold);
  outline: none;
}
.form__textarea {
  min-height: 120px;
  resize: vertical;
}
.form__input.error,
.form__textarea.error {
  border-color: var(--color-error);
}
.form__error {
  font-size: .8rem;
  color: var(--color-error);
  margin-top: 4px;
  display: none;
}
.form__error.visible { display: block; }

/* Checkbox */
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.form__checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--color-gold);
  flex-shrink: 0;
}
.form__checkbox label {
  font-size: .88rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

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

/* Submit */
.form__submit {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
  color: var(--color-bg);
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form__submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.form__submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.form__result {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  font-size: .9rem;
  display: none;
}
.form__result.success {
  display: block;
  background: rgba(68,170,51,.1);
  border: 1px solid rgba(68,170,51,.3);
  color: #6c6;
}
.form__result.error {
  display: block;
  background: rgba(221,68,68,.1);
  border: 1px solid rgba(221,68,68,.3);
  color: #e88;
}

/* ---------- Sitemap Page ---------- */
.sitemap-list {
  list-style: none;
}
.sitemap-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.sitemap-list a {
  font-size: 1rem;
}
.sitemap-list .sitemap-title {
  color: var(--color-cream);
  font-weight: 600;
}
.sitemap-list .sitemap-url {
  display: block;
  font-size: .85rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
}
.cookie-banner__text {
  font-size: .9rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.cookie-banner__text a {
  color: var(--color-gold);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.cookie-btn--accept {
  background: var(--color-gold);
  color: var(--color-bg);
}
.cookie-btn--accept:hover { background: var(--color-gold-light); }
.cookie-btn--reject {
  background: var(--color-surface-light);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.cookie-btn--reject:hover { background: var(--color-surface); }
.cookie-btn--settings {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.cookie-btn--settings:hover { color: var(--color-gold); border-color: var(--color-gold); }

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.cookie-modal.visible {
  opacity: 1;
  visibility: visible;
}
.cookie-modal__box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}
.cookie-modal__title {
  font-family: var(--font-heading);
  color: var(--color-cream);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cookie-modal__group {
  margin-bottom: 20px;
  padding: 16px;
  background: var(--color-surface);
  border-radius: var(--radius);
}
.cookie-modal__group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal__group-name {
  font-weight: 700;
  color: var(--color-cream);
  font-size: .95rem;
}
.cookie-modal__group-desc {
  font-size: .85rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}
.cookie-modal__toggle {
  position: relative;
  width: 44px;
  height: 24px;
}
.cookie-modal__toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal__toggle .slider {
  position: absolute;
  inset: 0;
  background: var(--color-surface-light);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-modal__toggle .slider::before {
  content: '';
  position: absolute;
  bottom: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--color-text-muted);
  border-radius: 50%;
  transition: var(--transition);
}
.cookie-modal__toggle input:checked + .slider {
  background: var(--color-gold);
}
.cookie-modal__toggle input:checked + .slider::before {
  transform: translateX(20px);
  background: var(--color-bg);
}
.cookie-modal__toggle input:disabled + .slider {
  opacity: .5;
  cursor: not-allowed;
}
.cookie-modal__save {
  width: 100%;
  padding: 12px;
  background: var(--color-gold);
  color: var(--color-bg);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-modal__save:hover {
  background: var(--color-gold-light);
}

/* ---------- Animations (reduced motion) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ---------- Geometric Decoration ---------- */
.geo-line {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.geo-line--diamond {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(212,168,67,.06);
  transform: rotate(45deg);
}

/* ---------- Syrup Shine Gradient ---------- */
.syrup-gradient {
  background: linear-gradient(135deg,
    rgba(212,168,67,.0) 0%,
    rgba(212,168,67,.06) 40%,
    rgba(200,148,58,.1) 60%,
    rgba(212,168,67,.0) 100%
  );
}

/* ---------- Print ---------- */
@media print {
  .header, .footer, .cookie-banner, .cookie-modal { display: none; }
  body { background: #fff; color: #000; }
  .section { padding: 24px 0; }
}
