/* ══════════════════════════════════════════════════════════════
   Ev Tatli Mutfagi – Patisserie Atolyesi
   Palette: graphite, cream, gold, cherry, pistachio
   ══════════════════════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --c-graphite:    #2c2c2c;
  --c-graphite-d:  #1a1a1a;
  --c-graphite-m:  #3d3835;
  --c-cream:       #faf6f0;
  --c-cream-mid:   #f0e8da;
  --c-cream-warm:  #f7f0e4;
  --c-gold:        #c9a84c;
  --c-gold-light:  #e0c97f;
  --c-gold-pale:   #f0dfa8;
  --c-gold-dark:   #a68a3a;
  --c-cherry:      #8b2e3b;
  --c-cherry-soft: #a84258;
  --c-pistachio:   #6b8f5e;
  --c-pistachio-l: #8fb17f;
  --c-white:       #ffffff;
  --c-text:        #3a3530;
  --c-text-light:  #6b6258;
  --c-text-muted:  #9a8f82;
  --c-border:      #d9d0c3;
  --c-border-gold: rgba(201,168,76,0.25);

  --ff-serif:      Georgia, 'Times New Roman', 'Noto Serif', serif;
  --ff-sans:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --shadow-soft:   0 1px 6px rgba(44,44,44,0.06);
  --shadow-card:   0 2px 14px rgba(44,44,44,0.09), 0 1px 3px rgba(44,44,44,0.06);
  --shadow-hover:  0 8px 30px rgba(44,44,44,0.14), 0 2px 6px rgba(44,44,44,0.06);
  --shadow-header: 0 2px 20px rgba(44,44,44,0.10);
  --shadow-gold:   0 2px 16px rgba(201,168,76,0.15);

  --radius:        8px;
  --radius-lg:     14px;
  --radius-xl:     22px;
  --max-w:         1140px;
  --header-h:      72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Marble background ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 50%),
    linear-gradient(225deg, rgba(139,46,59,0.025) 0%, transparent 35%),
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.03) 0%, transparent 50%),
    linear-gradient(160deg, var(--c-cream) 0%, #f5efe5 30%, var(--c-cream-warm) 60%, #ede5d5 100%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(72deg, transparent 44%, rgba(201,168,76,0.14) 45.5%, transparent 47%),
    linear-gradient(148deg, transparent 54%, rgba(180,168,148,0.10) 55.5%, transparent 57%),
    linear-gradient(200deg, transparent 36%, rgba(201,168,76,0.08) 37.5%, transparent 39%),
    linear-gradient(310deg, transparent 62%, rgba(160,148,128,0.06) 63%, transparent 64%);
  pointer-events: none;
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--c-gold);
  color: var(--c-graphite-d);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER – main page
   ══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(250,246,240,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-header);
  border-bottom-color: var(--c-border-gold);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* logo */
.site-logo {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-graphite);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
}
.site-logo span { color: var(--c-gold); }
.site-logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  border-radius: 2px;
}

/* nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: inline-block;
  padding: 7px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--c-text);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  position: relative;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(201,168,76,0.10);
  color: var(--c-gold-dark);
}
.nav-link.active {
  background: var(--c-gold);
  color: var(--c-graphite-d);
  font-weight: 600;
}

/* mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  padding: 6px 10px;
  cursor: pointer;
  color: var(--c-text);
  font-size: 1.3rem;
  line-height: 1;
}

/* ══════════════════════════════════════
   TECH PAGES HEADER
   ══════════════════════════════════════ */
.tech-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--c-graphite-d);
  border-bottom: 2px solid var(--c-gold);
  padding: 0;
  transition: box-shadow 0.3s;
}
.tech-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.tech-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.tech-header .site-logo {
  color: var(--c-cream);
  font-size: 1.15rem;
}
.tech-header .site-logo::after {
  background: linear-gradient(90deg, var(--c-gold), transparent);
}
.tech-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.tech-nav .nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  padding: 7px 14px;
}
.tech-nav .nav-link:hover,
.tech-nav .nav-link:focus-visible {
  background: rgba(201,168,76,0.15);
  color: var(--c-gold-light);
}
.tech-nav .nav-link.active {
  background: var(--c-gold);
  color: var(--c-graphite-d);
}
.tech-nav .nav-link--home {
  border-right: 1px solid rgba(255,255,255,0.12);
  margin-right: 6px;
  padding-right: 18px;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  padding: 72px 0 56px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
/* decorative corner ornaments */
.hero::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 5%;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--c-gold-pale);
  border-right: 2px solid var(--c-gold-pale);
  opacity: 0.4;
  pointer-events: none;
}
.hero-corner-bl {
  position: absolute;
  bottom: 20px;
  left: 5%;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--c-gold-pale);
  border-left: 2px solid var(--c-gold-pale);
  opacity: 0.4;
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  color: var(--c-graphite-d);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 26px;
  border-radius: 100px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-gold);
}
.hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--c-graphite);
  line-height: 1.18;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-gold-dark), var(--c-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--c-text-light);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: 28px;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--c-white);
}

/* ══════════════════════════════════════
   GOLD DIVIDER
   ══════════════════════════════════════ */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 52px auto;
  max-width: 340px;
  position: relative;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.gold-divider svg {
  width: 16px;
  height: 16px;
  fill: var(--c-gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.section {
  padding: 68px 0;
  position: relative;
}
.section-alt {
  background:
    linear-gradient(180deg, rgba(201,168,76,0.03) 0%, rgba(201,168,76,0.06) 50%, rgba(201,168,76,0.03) 100%);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--c-graphite);
  text-align: center;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  border-radius: 3px;
  margin: 12px auto 0;
}
.section-subtitle {
  text-align: center;
  color: var(--c-text-light);
  max-width: 600px;
  margin: 8px auto 44px;
  font-size: 1.01rem;
}

/* ══════════════════════════════════════
   FILTER BUTTONS
   ══════════════════════════════════════ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  color: var(--c-text);
  padding: 9px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s;
  font-family: inherit;
}
.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: var(--c-gold);
  color: var(--c-gold-dark);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.filter-btn.filter-active {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  border-color: var(--c-gold);
  color: var(--c-graphite-d);
  box-shadow: var(--shadow-gold);
}

/* ══════════════════════════════════════
   DESSERT CARDS
   ══════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.dessert-card {
  background: var(--c-white);
  border: 1px solid var(--c-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;
}
/* decorative gold corner */
.dessert-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-top: 3px solid var(--c-gold);
  border-right: 3px solid var(--c-gold);
  border-radius: 0 var(--radius-lg) 0 0;
  z-index: 2;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.dessert-card:hover::before {
  opacity: 1;
}
.dessert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--c-cream-mid);
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.dessert-card:hover .card-img-wrap img {
  transform: scale(1.05);
}
.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  color: var(--c-graphite-d);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
}

.card-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  /* gold top accent line */
  border-top: 2px solid var(--c-gold-pale);
}

.card-title {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-graphite);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-desc {
  font-size: 0.94rem;
  color: var(--c-text-light);
  margin-bottom: 14px;
  flex: 1;
  line-height: 1.7;
}

.card-section-title {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--c-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 16px 0 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--c-cream-mid);
  position: relative;
}
.card-section-title::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--c-gold);
}

.ingredients-list,
.steps-list {
  padding-left: 22px;
  margin-bottom: 10px;
}
.ingredients-list li {
  font-size: 0.92rem;
  margin-bottom: 5px;
  color: var(--c-text);
  line-height: 1.5;
}
.ingredients-list li::marker {
  color: var(--c-gold);
}
.steps-list li {
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--c-text);
  line-height: 1.6;
}
.steps-list li::marker {
  color: var(--c-gold-dark);
  font-weight: 700;
}

.allergen-note {
  display: inline-block;
  background: rgba(139,46,59,0.07);
  color: var(--c-cherry);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-top: 10px;
  border: 1px solid rgba(139,46,59,0.12);
}
.serving-note {
  display: inline-block;
  background: rgba(107,143,94,0.08);
  color: var(--c-pistachio);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-top: 5px;
  border: 1px solid rgba(107,143,94,0.12);
}

/* ══════════════════════════════════════
   PROSE (technique / problems)
   ══════════════════════════════════════ */
.prose {
  max-width: 780px;
  margin: 0 auto;
}
.prose h3 {
  font-family: var(--ff-serif);
  font-size: 1.28rem;
  color: var(--c-graphite);
  margin: 40px 0 14px;
  padding-left: 18px;
  position: relative;
}
.prose h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: linear-gradient(180deg, var(--c-gold), var(--c-gold-light));
  border-radius: 4px;
}
.prose p {
  margin-bottom: 16px;
}
.prose ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.prose ul li {
  margin-bottom: 7px;
  line-height: 1.7;
}
.prose ul li::marker {
  color: var(--c-gold);
}
.prose img {
  border: 3px solid var(--c-white);
}

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  background: var(--c-white);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--c-border-gold); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 26px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-graphite);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background 0.2s;
  font-family: inherit;
  line-height: 1.4;
}
.faq-question:hover,
.faq-question:focus-visible {
  background: rgba(201,168,76,0.05);
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--c-gold);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
}
.faq-question[aria-expanded="true"]::after {
  content: '\2212';
  transform: rotate(180deg);
  background: var(--c-gold);
  color: var(--c-graphite-d);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 26px 22px;
  font-size: 0.94rem;
  color: var(--c-text-light);
  line-height: 1.75;
  border-top: 1px solid var(--c-cream-mid);
  padding-top: 16px;
}

/* ══════════════════════════════════════
   POLICY SECTIONS
   ══════════════════════════════════════ */
.policy-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 0;
}
.policy-section h2 {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--c-graphite);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--c-gold);
  display: inline-block;
}
.policy-section h3 {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--c-graphite);
  margin: 28px 0 10px;
  padding-left: 16px;
  position: relative;
}
.policy-section h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 3px;
  background: var(--c-gold);
  border-radius: 3px;
}
.policy-section p,
.policy-section ul {
  margin-bottom: 14px;
}
.policy-section ul {
  padding-left: 24px;
}
.policy-section ul li {
  margin-bottom: 6px;
  line-height: 1.7;
}
.policy-section ul li::marker {
  color: var(--c-gold);
}

/* tech page content wrapper */
.tech-content {
  min-height: calc(100vh - 200px);
  padding: 20px 0 60px;
}

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
.about-box {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
/* decorative gold accent */
.about-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light), var(--c-gold));
}
.about-box p {
  margin-bottom: 14px;
  color: var(--c-text);
}
.about-box ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.about-box ul li {
  margin-bottom: 6px;
  line-height: 1.7;
}
.about-box ul li::marker {
  color: var(--c-gold);
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  max-width: 920px;
  margin: 0 auto;
}
.contact-info h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--c-graphite);
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.94rem;
  color: var(--c-text);
}
.contact-icon {
  width: 22px;
  height: 22px;
  fill: var(--c-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   FORM
   ══════════════════════════════════════ */
.contact-form {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 30px 30px 34px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light), var(--c-gold));
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--c-graphite);
  margin-bottom: 7px;
}
.form-label .required { color: var(--c-cherry); }
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--c-text);
  background: var(--c-cream);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--c-text-light);
  line-height: 1.5;
}
.form-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--c-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.form-check a { color: var(--c-gold-dark); }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; }
.btn-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  color: var(--c-graphite-d);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(201,168,76,0.25);
}
.btn-submit:hover {
  opacity: 0.93;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-submit:disabled {
  opacity: 0.50;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.form-message {
  margin-top: 14px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}
.form-message.form-success {
  display: block;
  background: rgba(107,143,94,0.10);
  color: var(--c-pistachio);
  border: 1px solid rgba(107,143,94,0.18);
}
.form-message.form-error {
  display: block;
  background: rgba(139,46,59,0.07);
  color: var(--c-cherry);
  border: 1px solid rgba(139,46,59,0.14);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
  background: var(--c-graphite-d);
  color: rgba(255,255,255,0.55);
  padding: 40px 0 32px;
  font-size: 0.84rem;
  text-align: center;
  border-top: 3px solid var(--c-gold);
  position: relative;
}
.site-footer a {
  color: var(--c-gold-light);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--c-gold); text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  text-align: left;
  margin-bottom: 28px;
}
.footer-col h4 {
  color: var(--c-cream);
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-col-links a {
  font-size: 0.84rem;
}
.footer-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  margin: 0 auto 16px;
  border: none;
}
.footer-copy {
  font-size: 0.82rem;
}
.footer-cookie-btn {
  background: none;
  border: none;
  color: var(--c-gold-light);
  cursor: pointer;
  font-size: 0.82rem;
  text-decoration: underline;
  font-family: inherit;
  margin-top: 6px;
  transition: color 0.2s;
}
.footer-cookie-btn:hover { color: var(--c-gold); }

/* ══════════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  color: var(--c-graphite-d);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(44,44,44,0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.25s;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ══════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--c-graphite-d);
  color: rgba(255,255,255,0.82);
  border-top: 2px solid var(--c-gold);
  padding: 24px;
  font-size: 0.9rem;
}
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.cookie-text {
  margin-bottom: 18px;
  line-height: 1.65;
}
.cookie-text a {
  color: var(--c-gold-light);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-btn {
  padding: 10px 26px;
  font-size: 0.87rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s;
  font-family: inherit;
}
.cookie-btn--accept {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  color: var(--c-graphite-d);
}
.cookie-btn--accept:hover { background: var(--c-gold-light); }
.cookie-btn--reject {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.82);
}
.cookie-btn--reject:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--c-white);
}
.cookie-btn--settings {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.82);
}
.cookie-btn--settings:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-light);
}

.cookie-settings {
  margin-top: 18px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.cookie-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cookie-opt:last-of-type { border-bottom: none; }
.cookie-opt-label { font-weight: 500; }
.cookie-opt-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.cookie-opt input[type="checkbox"] {
  accent-color: var(--c-gold);
  width: 18px;
  height: 18px;
}
.cookie-btn--save {
  margin-top: 14px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  color: var(--c-graphite-d);
}
.cookie-btn--save:hover { background: var(--c-gold-light); }

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .dessert-card,
  .dessert-card .card-img-wrap img,
  .faq-answer { transition: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
  :root { --header-h: 62px; }
  .menu-toggle { display: block; }
  .main-nav,
  .tech-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--c-border);
    transform: translateY(-120%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s;
  }
  .main-nav {
    background: rgba(250,246,240,0.97);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-header);
  }
  .tech-nav {
    background: rgba(26,26,26,0.97);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  }
  .main-nav.open,
  .tech-nav.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.94rem;
  }
  .tech-nav .nav-link--home {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-right: 0;
    padding-right: 16px;
    margin-bottom: 4px;
    padding-bottom: 14px;
  }
  .hero { padding: 48px 0 36px; }
  .section { padding: 44px 0; }
  .container { padding: 0 16px; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .cards-grid { gap: 20px; }
  .card-body { padding: 18px 20px 22px; }
  .contact-form { padding: 22px 18px 26px; }
}

/* ── Utility ── */
[hidden] { display: none !important; }
.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;
}
