/* ============================================
   MAADANE LEV - Lettre de Mission
   Design System & Shared Styles
   ============================================ */

:root {
  --bg-primary: #0a0a14;
  --bg-card: #12121f;
  --bg-card-hover: #1a1a2e;
  --border-card: #1e1e35;
  --gold: #c9a96e;
  --gold-light: #e4d5b7;
  --gold-dim: rgba(201,169,110,0.12);
  --terracotta: #c17f59;
  --cream: #f5f0e8;
  --cream-muted: #b8b0a3;
  --green: #4ade80;
  --amber: #fbbf24;
  --red-soft: #f87171;
  --blue-accent: #60a5fa;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-hebrew: 'Heebo', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

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

/* Hebrew text */
.he {
  direction: rtl;
  unicode-bidi: isolate;
  font-family: var(--font-hebrew);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-card); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-card);
  padding: 0;
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-monogram {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg-primary);
  letter-spacing: -0.5px;
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-brand-text {
  font-family: var(--font-hebrew);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream-muted);
  transition: all 0.25s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: var(--gold-dim);
}

.nav-counter {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  background: var(--gold-dim);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-card);
    padding: 0.75rem 1rem;
    gap: 0.15rem;
  }
  .nav-links.open a { padding: 0.75rem 1rem; }
  .nav-hamburger { display: block; }
  .nav-counter { font-size: 0.72rem; padding: 0.3rem 0.6rem; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 6rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero-monogram {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--bg-primary);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(201,169,110,0.25);
}

.hero-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 8px 40px rgba(201,169,110,0.3);
  border: 2px solid rgba(201,169,110,0.3);
}

.hero-hebrew {
  font-family: var(--font-hebrew);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  direction: rtl;
  margin-bottom: 0.25rem;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--cream-muted);
  margin-bottom: 0.5rem;
}

.hero-date {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.4);
  margin-bottom: 0.5rem;
}

.hero-legal {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.25);
  margin-top: 1rem;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 2rem;
  transition: background 0.3s, border-color 0.3s;
}

.card:hover {
  background: var(--bg-card-hover);
}

.card-terra {
  border-left-color: var(--terracotta);
}

.card-amber {
  border-left-color: var(--amber);
}

.card-green {
  border-left-color: var(--green);
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.card-icon-terra { color: var(--terracotta); background: rgba(193,127,89,0.12); }

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
}

.card p, .card li {
  color: rgba(245,240,232,0.75);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   TABLES
   ============================================ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.info-table {
  width: 100%;
  font-size: 0.88rem;
  border-collapse: collapse;
}

.info-table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border-card);
  vertical-align: top;
}

.info-table td:first-child {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  padding-right: 1.5rem;
  width: 1%;
}

.info-table td:last-child {
  color: rgba(245,240,232,0.8);
}

/* ============================================
   NOTICE / ALERT BOXES
   ============================================ */
.notice {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.notice-gold {
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--gold-light);
}

.notice-amber {
  background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.2);
  color: var(--amber);
}

.notice-green {
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.2);
  color: var(--green);
}

.notice-blue {
  background: rgba(96,165,250,0.06);
  border: 1px solid rgba(96,165,250,0.2);
  color: var(--blue-accent);
}

/* ============================================
   BULLET LISTS
   ============================================ */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
}

.check-list li::before {
  content: none;
}

.check-list .bullet {
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.85rem;
}

.bullet-gold { color: var(--gold); }
.bullet-green { color: var(--green); }
.bullet-amber { color: var(--amber); }
.bullet-terra { color: var(--terracotta); }
.bullet-red { color: var(--red-soft); }

/* ============================================
   PHASE BLOCKS (plan.html)
   ============================================ */
.phase-block {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: background 0.3s;
}

.phase-block:hover { background: var(--bg-card-hover); }

.phase-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}

.phase-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
  padding-right: 3.5rem;
}

.phase-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.badge-prelicence {
  background: rgba(201,169,110,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.25);
}

.badge-postlicence {
  background: rgba(193,127,89,0.15);
  color: var(--terracotta);
  border: 1px solid rgba(193,127,89,0.25);
}

.subtask-group {
  margin-bottom: 1.25rem;
}

.subtask-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.subtask-list {
  list-style: none;
  padding: 0;
  margin-left: 0.5rem;
}

.subtask-list li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.25rem;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.6;
}

.subtask-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
}

.subtask-list .sub-item {
  padding-left: 2.25rem;
  font-size: 0.84rem;
  color: rgba(245,240,232,0.58);
}

.subtask-list .sub-item::before {
  left: 1rem;
  width: 4px;
  height: 4px;
  background: var(--cream-muted);
  opacity: 0.3;
}

/* ============================================
   PROGRESS BAR (plan.html)
   ============================================ */
.progress-global {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.progress-label {
  font-size: 0.85rem;
  color: var(--cream-muted);
  flex-shrink: 0;
}

.progress-label strong {
  color: var(--gold);
}

.progress-track {
  flex: 1;
  min-width: 120px;
  height: 8px;
  background: var(--border-card);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--terracotta));
  border-radius: 4px;
  transition: width 0.6s ease-out;
}

/* ============================================
   VALIDATION WIDGET
   ============================================ */
.validation-widget {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-card);
}

.valid-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: transparent;
  color: var(--cream-muted);
  font-size: 0.82rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s;
}

.valid-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.valid-btn.checked {
  background: rgba(74,222,128,0.1);
  border-color: var(--green);
  color: var(--green);
}

.valid-btn .check-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  font-size: 0.7rem;
}

.valid-btn.checked .check-box {
  background: var(--green);
  color: var(--bg-primary);
}

.comment-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: transparent;
  color: var(--cream-muted);
  font-size: 0.82rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s;
}

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

.comment-btn.has-comment {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.comment-area {
  width: 100%;
  margin-top: 0.75rem;
  display: none;
}

.comment-area.open { display: block; }

.comment-area textarea {
  width: 100%;
  min-height: 80px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: var(--bg-primary);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  resize: vertical;
  transition: border-color 0.3s;
  line-height: 1.5;
}

.comment-area textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,169,110,0.15);
}

.comment-area textarea::placeholder {
  color: rgba(245,240,232,0.3);
}

/* ============================================
   VARIANT COLUMNS (Catering vs Restaurant)
   ============================================ */
.variant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

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

.variant-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.variant-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201,169,110,0.3);
}

.variant-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.variant-card .variant-sub {
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.variant-card ul {
  list-style: none;
  padding: 0;
}

.variant-card ul li {
  font-size: 0.84rem;
  color: rgba(245,240,232,0.7);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.variant-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

/* Variant choice field */
.variant-choice {
  margin-top: 1rem;
}

.variant-choice label {
  font-size: 0.85rem;
  color: var(--cream-muted);
  margin-right: 0.75rem;
}

.variant-choice select {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: var(--bg-primary);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.variant-choice select:focus {
  outline: none;
  border-color: var(--gold);
}

/* ============================================
   TIMELINE (plan.html)
   ============================================ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--terracotta), var(--gold));
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-dot {
  position: absolute;
  left: -2.15rem;
  top: 0.15rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg-primary);
  z-index: 1;
}

.timeline-dot.terra { background: var(--terracotta); }

.timeline-item h4 {
  font-size: 0.95rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.timeline-item .timeline-duration {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   FAQ CARDS (faq.html)
   ============================================ */
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1rem;
  transition: background 0.3s;
}

.faq-card:hover { background: var(--bg-card-hover); }

.faq-question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.7;
}

/* Glossary table */
.glossary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.glossary-table th {
  text-align: left;
  padding: 0.75rem 0.75rem;
  border-bottom: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.glossary-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border-card);
  color: rgba(245,240,232,0.75);
}

.glossary-table td:first-child {
  font-family: var(--font-hebrew);
  direction: rtl;
  unicode-bidi: isolate;
  color: var(--cream);
  font-weight: 500;
}

/* ============================================
   QUESTIONS FORM (questions.html)
   ============================================ */
.question-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1rem;
}

.question-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 0.25rem;
}

.question-text {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.question-card textarea,
.question-card input[type="text"] {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: var(--bg-primary);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.5;
  transition: border-color 0.3s;
}

.question-card textarea { min-height: 70px; resize: vertical; }

.question-card textarea:focus,
.question-card input[type="text"]:focus,
.question-card select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,169,110,0.15);
}

.question-card textarea::placeholder,
.question-card input::placeholder {
  color: rgba(245,240,232,0.25);
}

.question-card select {
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: var(--bg-primary);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
  width: 100%;
}

.radio-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--cream-muted);
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  transition: all 0.25s;
}

.radio-group label:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.radio-group input[type="radio"] {
  accent-color: var(--gold);
}

/* ============================================
   WHATSAPP FAB + BUTTON
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  z-index: 90;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  color: white;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  background: #25D366;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  color: white;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.3);
  color: var(--bg-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border-card);
  padding: 3rem 1.25rem 2rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-hebrew);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.footer-company {
  font-size: 0.82rem;
  color: var(--cream-muted);
  margin-bottom: 1.5rem;
}

.footer-info {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.35);
  line-height: 1.8;
}

/* ============================================
   ANIMATION CLASSES
   ============================================ */
.animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.animate-slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================
   SECTION SPACING
   ============================================ */
.section-spacing {
  margin-bottom: 2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--cream-muted);
  margin-bottom: 2rem;
}

/* ============================================
   TEMPERATURES TABLE (plan.html)
   ============================================ */
.temp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.temp-table th {
  text-align: left;
  padding: 0.6rem 0.5rem;
  border-bottom: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.temp-table td {
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid var(--border-card);
  color: rgba(245,240,232,0.72);
}

.temp-table td:first-child {
  font-weight: 500;
  color: var(--cream);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-terra { color: var(--terracotta); }
.text-green { color: var(--green); }
.text-amber { color: var(--amber); }
.text-muted { color: var(--cream-muted); }
.text-dim { color: rgba(245,240,232,0.5); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.text-center { text-align: center; }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.font-bold { font-weight: 700; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* ============================================
   PAGE-SPECIFIC OVERRIDES
   ============================================ */
.page-content {
  padding-top: 2rem;
  padding-bottom: 6rem;
}

/* Section navigation link */
.section-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s;
}

.section-nav-link:hover {
  background: rgba(201,169,110,0.2);
  color: var(--gold-light);
  transform: translateX(4px);
}
