/* ============================================================
   Ev Tatlı Atölyesi — Konditerska Masterskaya Design
   Marble + Gold + Vitrine Cards | system-ui editorial
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --clr-marble:       #f5f2ee;
  --clr-marble-light: #faf8f5;
  --clr-cream:        #fdf9f4;
  --clr-white:        #ffffff;
  --clr-gold:         #c9a96e;
  --clr-gold-light:   #e2d1a8;
  --clr-gold-dark:    #a68942;
  --clr-text:         #2c2420;
  --clr-text-muted:   #6b5e54;
  --clr-text-light:   #8a7e74;
  --clr-border:       #e8e2da;
  --clr-border-gold:  rgba(201,169,110,0.35);
  --clr-shadow:       rgba(44,36,32,0.06);
  --clr-shadow-gold:  rgba(201,169,110,0.12);
  --clr-overlay:      rgba(44,36,32,0.45);
  --clr-success:      #4a7c59;
  --clr-error:        #a94442;
  --clr-error-bg:     #fdf0ef;
  --clr-success-bg:   #eef6f0;

  --ff-body:    system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --ff-heading: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  2.75rem;

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

  --lh-tight:  1.25;
  --lh-normal: 1.6;
  --lh-loose:  1.8;

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

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --max-width:      1140px;
  --max-text-width: 72ch;

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

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

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

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-normal);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background-color: var(--clr-marble);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Marble background texture via CSS */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(201,169,110,0.03) 0%, transparent 50%),
    linear-gradient(225deg, rgba(201,169,110,0.02) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 50%, rgba(232,226,218,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(232,226,218,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(232,226,218,0.3) 0%, transparent 50%),
    linear-gradient(180deg, var(--clr-marble-light) 0%, var(--clr-marble) 100%);
  pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-gold-dark); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--clr-gold); }
a:focus-visible { outline: 2px solid var(--clr-gold); outline-offset: 2px; border-radius: var(--radius-sm); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--clr-text);
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 9999;
  padding: var(--space-sm) var(--space-md);
  background: var(--clr-gold);
  color: var(--clr-white);
  font-weight: var(--fw-semibold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--clr-gold-dark);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 1px 3px var(--clr-shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--clr-text);
}

.logo-icon {
  font-size: var(--fs-xl);
  color: var(--clr-gold);
  line-height: 1;
}

.logo-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
}

/* --- Nav Toggle (Mobile) --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-gold-dark);
  background: rgba(201,169,110,0.08);
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

#anaicerik {
  scroll-margin-top: 80px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background: var(--clr-cream);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

/* Gold divider line */
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  border: none;
  margin: var(--space-lg) auto;
}

/* Section heading */
.section-title {
  text-align: center;
  margin-bottom: var(--space-sm);
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: var(--fs-md);
  max-width: var(--max-text-width);
  margin: 0 auto var(--space-2xl);
  line-height: var(--lh-loose);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  border: 1px solid var(--clr-border-gold);
  border-radius: 20px;
  margin-bottom: var(--space-lg);
}

.hero h1 {
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-3xl));
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.hero h1 .gold-accent {
  color: var(--clr-gold-dark);
}

.hero-desc {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 60ch;
  margin: 0 auto var(--space-xl);
  line-height: var(--lh-loose);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 2px 8px var(--clr-shadow-gold);
}

.hero-cta:hover {
  color: var(--clr-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--clr-shadow-gold);
}

/* ============================================================
   VITRINE CARDS — Dessert recipe cards
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.vitrine-card {
  position: relative;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
}

.vitrine-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light), var(--clr-gold));
}

.vitrine-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--clr-shadow), 0 2px 8px var(--clr-shadow-gold);
}

.card-badge {
  display: inline-block;
  padding: 2px var(--space-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  background: rgba(201,169,110,0.1);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.card-title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.card-desc {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-md);
}

.card-meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
  padding-top: var(--space-md);
  border-top: 1px solid var(--clr-border);
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* ============================================================
   RECIPE DETAIL INSIDE CARDS
   ============================================================ */
.recipe-ingredients,
.recipe-steps {
  margin-top: var(--space-md);
}

.recipe-ingredients h4,
.recipe-steps h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.recipe-ingredients ul {
  list-style: none;
  padding-left: 0;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

.recipe-ingredients ul li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: var(--space-xs);
}

.recipe-ingredients ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--clr-gold);
  border-radius: 50%;
}

.recipe-steps ol {
  list-style: none;
  padding-left: 0;
  counter-reset: step;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

.recipe-steps ol li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: var(--space-sm);
  counter-increment: step;
}

.recipe-steps ol li::before {
  content: counter(step) '.';
  position: absolute;
  left: 0;
  color: var(--clr-gold-dark);
  font-weight: var(--fw-semibold);
}

.recipe-note {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(201,169,110,0.06);
  border-left: 3px solid var(--clr-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}

.allergen-info {
  margin-top: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
}

/* ============================================================
   TECHNIQUE SECTION
   ============================================================ */
.technique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.technique-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
}

.technique-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-xl);
  right: var(--space-xl);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold-light), transparent);
}

.technique-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-gold-dark);
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

.technique-item h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.technique-item p {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

/* ============================================================
   MISTAKES SECTION
   ============================================================ */
.mistakes-list {
  max-width: var(--max-text-width);
  margin: 0 auto;
}

.mistake-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  border-left: 3px solid var(--clr-gold);
}

.mistake-item h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  color: var(--clr-text);
}

.mistake-problem {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-md);
}

.mistake-solution {
  padding: var(--space-md);
  background: var(--clr-success-bg);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: var(--clr-success);
}

.mistake-solution strong {
  display: block;
  margin-bottom: var(--space-xs);
}

/* ============================================================
   FAQ / SSS — Accordion
   ============================================================ */
.faq-list {
  max-width: var(--max-text-width);
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  background: var(--clr-white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--clr-gold-dark); }
.faq-question:focus-visible { outline: 2px solid var(--clr-gold); outline-offset: -2px; }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform var(--transition-base);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--clr-gold);
  border-radius: 1px;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  padding-bottom: var(--space-4xl);
}

.contact-info-block {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-info-block h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-lg);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--clr-marble-light);
  border-left: 3px solid var(--clr-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: background var(--transition-fast);
}

.contact-info-item:hover {
  background: var(--clr-cream);
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-gold-dark);
  margin-bottom: var(--space-xs);
}

.contact-info-value {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
}

.form-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.form-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  margin-bottom: var(--space-sm);
}

.form-group label .required {
  color: var(--clr-error);
}

.form-control {
  width: 100%;
  padding: var(--space-md);
  font-size: var(--fs-base);
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-marble-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px var(--clr-shadow-gold);
}

.form-control.error {
  border-color: var(--clr-error);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--clr-gold);
}

.form-check label {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--clr-error);
  margin-top: var(--space-xs);
  display: none;
}

.form-error.visible {
  display: block;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  font-family: var(--ff-body);
  color: var(--clr-white);
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--clr-shadow-gold);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  display: none;
}

.form-message.success {
  display: block;
  background: var(--clr-success-bg);
  color: var(--clr-success);
  border: 1px solid rgba(74,124,89,0.2);
}

.form-message.error {
  display: block;
  background: var(--clr-error-bg);
  color: var(--clr-error);
  border: 1px solid rgba(169,68,66,0.2);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-text);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-3xl);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
}

.footer-brand {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

.footer-heading {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--clr-gold-light);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: var(--space-2xl) auto 0;
  padding: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: var(--fs-xs);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 -4px 20px var(--clr-shadow);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg);
}

.cookie-text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  font-family: var(--ff-body);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--clr-white);
  color: var(--clr-text);
}

.cookie-btn:hover {
  border-color: var(--clr-gold);
}

.cookie-btn--accept {
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
  color: var(--clr-white);
  border-color: transparent;
}

.cookie-btn--accept:hover {
  box-shadow: 0 2px 8px var(--clr-shadow-gold);
}

.cookie-btn--save {
  background: var(--clr-gold-dark);
  color: var(--clr-white);
  border-color: transparent;
  margin-top: var(--space-md);
}

.cookie-settings {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--clr-border);
}

.cookie-settings fieldset {
  border: none;
  padding: 0;
}

.cookie-settings legend {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--space-md);
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
  cursor: pointer;
}

.cookie-option small {
  color: var(--clr-text-light);
}

/* ============================================================
   LEGAL / TECH PAGES
   ============================================================ */
.legal-content {
  max-width: var(--max-text-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

.legal-content h1 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-sm);
}

.legal-content .last-updated {
  font-size: var(--fs-sm);
  color: var(--clr-text-light);
  margin-bottom: var(--space-2xl);
}

.legal-content h2 {
  font-size: var(--fs-lg);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--clr-border);
}

.legal-content h3 {
  font-size: var(--fs-md);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-md);
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-md);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}

.legal-content ul li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: var(--space-xs);
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--clr-gold);
  border-radius: 50%;
}

.legal-content ol {
  list-style: none;
  padding-left: 0;
  counter-reset: legalstep;
  margin-bottom: var(--space-md);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}

.legal-content ol li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: var(--space-xs);
  counter-increment: legalstep;
}

.legal-content ol li::before {
  content: counter(legalstep) '.';
  position: absolute;
  left: 0;
  color: var(--clr-gold-dark);
  font-weight: var(--fw-semibold);
}

.legal-content a {
  color: var(--clr-gold-dark);
  text-decoration: underline;
  text-decoration-color: var(--clr-border-gold);
  text-underline-offset: 2px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-size: var(--fs-sm);
}

.legal-content th,
.legal-content td {
  padding: var(--space-md);
  border: 1px solid var(--clr-border);
  text-align: left;
}

.legal-content th {
  background: var(--clr-cream);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
}

.legal-content td {
  color: var(--clr-text-muted);
}

/* About page */
.about-highlight {
  background: var(--clr-cream);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.about-highlight p {
  font-size: var(--fs-md);
  color: var(--clr-text);
  font-style: italic;
  text-align: center;
}

/* Cookie preferences button */
.btn-cookie-prefs {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  font-family: var(--ff-body);
  color: var(--clr-gold-dark);
  background: rgba(201,169,110,0.1);
  border: 1px solid var(--clr-border-gold);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-cookie-prefs:hover {
  background: rgba(201,169,110,0.2);
}

/* ============================================================
   RECIPE CARD IMAGES
   ============================================================ */
.card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  background: var(--clr-marble-light);
}

/* ============================================================
   HERO IMAGE
   ============================================================ */
.hero-img {
  display: block;
  width: 100%;
  height: auto;
  margin: var(--space-2xl) auto 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px var(--clr-shadow);
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

/* ============================================================
   TECHNIQUE IMAGE
   ============================================================ */
.technique-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  background: var(--clr-marble-light);
}

/* ============================================================
   ABOUT IMAGE
   ============================================================ */
.about-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  margin: var(--space-xl) auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px var(--clr-shadow);
}

/* ============================================================
   CONTACT PAGE HEADER
   ============================================================ */
.contact-header {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
}

.contact-header h1 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.contact-header h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  margin: var(--space-md) auto 0;
}

.contact-subtitle {
  color: var(--clr-text-muted);
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  margin-top: var(--space-md);
}

/* ============================================================
   TABLE HORIZONTAL SCROLL
   ============================================================ */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-lg) 0;
}

.table-scroll table {
  margin: 0;
}

/* ============================================================
   ANIMATIONS (soft, no flicker)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   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;
  }

  html { scroll-behavior: auto; }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cookie-banner { animation: none; }
  .vitrine-card:hover { transform: none; }
  .hero-cta:hover { transform: none; }
  .btn-submit:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --fs-3xl: 2rem;
    --fs-2xl: 1.75rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 4px 12px var(--clr-shadow);
    padding: var(--space-md);
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    padding: var(--space-md);
    border-radius: var(--radius-sm);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .technique-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero {
    padding: var(--space-2xl) var(--space-md);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-3xl: 1.75rem;
    --fs-2xl: 1.5rem;
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
    --space-4xl: 3rem;
  }

  .header-inner {
    padding: var(--space-sm) var(--space-md);
  }

  .vitrine-card {
    padding: var(--space-lg);
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header,
  .site-footer,
  .cookie-banner,
  .skip-link,
  .nav-toggle { display: none !important; }

  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
