/* ================================================
   sandi büfe café — Global Stylesheet
   ================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700&family=Barlow+Semi+Condensed:wght@500&family=Montserrat:wght@400;500&display=swap');

/* CSS Variables */
:root {
  --primary:        #8A2418;
  --primary-hover:  #a52d1f;
  --primary-dark:   #6b1c12;
  --accent:         #FFFFFF;
  --bg:             #F9F6F2;
  --dark:           #1A1A1A;
  --light:          #F2EDE8;
  --text:           #2c2c2c;
  --text-muted:     #6b6b6b;
  --border:         #e2d9d0;

  --font-heading:   'Baloo 2', sans-serif;
  --font-body:      'Montserrat', sans-serif;
  --font-label:     'Barlow Semi Condensed', sans-serif;

  --radius:         10px;
  --radius-sm:      6px;
  --radius-lg:      20px;
  --shadow:         0 2px 16px rgba(26,26,26,0.07);
  --shadow-md:      0 6px 32px rgba(26,26,26,0.12);
  --transition:     all 0.25s ease;
  --nav-height:     70px;
  --max-width:      1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-title  { font-family: var(--font-heading); font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.section-subtitle { font-family: var(--font-body); color: var(--text-muted); font-size: 1.05rem; }

.label {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.divider        { width: 48px; height: 3px; background: var(--primary); border-radius: 2px; margin: 16px 0 32px; }
.divider-center { margin: 16px auto 32px; }

/* Cat view link */
.cat-view-link {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-top: 14px;
  display: block;
  transition: var(--transition);
}
.cat-card:hover .cat-view-link,
.cat-card.active .cat-view-link { color: rgba(255,255,255,0.85); }

/* Product icon (SVG, replaces emoji) */
.product-icon {
  width: 52px;
  height: 52px;
  background: rgba(138,36,24,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

/* Footer admin link */
.footer-admin-link {
  font-size: 11px !important;
  opacity: 0.3;
  transition: var(--transition);
  color: rgba(255,255,255,0.35) !important;
}
.footer-admin-link:hover { opacity: 1; color: rgba(255,255,255,0.7) !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.4;
}
.btn-primary {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(138,36,24,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--accent);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-white:hover {
  background: transparent;
  color: var(--accent);
}
.btn-outline-white {
  background: transparent;
  color: var(--accent);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 7px 16px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--accent);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  box-shadow: 0 1px 8px rgba(26,26,26,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  position: relative;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo { height: 38px; width: auto; }
.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-sub {
  font-weight: 400;
  font-size: 0.8em;
  color: var(--text-muted);
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.navbar-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text);
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--primary);
  background: var(--light);
}
.lang-switcher {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}
.lang-btn {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: var(--transition);
}
.lang-btn:hover { color: var(--primary); border-color: var(--border); }
.lang-btn.active { color: var(--accent); background: var(--primary); }
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--accent);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(138,36,24,0.45) 0%, rgba(26,26,26,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-label {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}
.hero h1     { color: var(--accent); margin-bottom: 20px; line-height: 1.1; }
.hero p      { font-size: 1.1rem; color: rgba(255,255,255,0.78); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page Hero (inner pages) */
.page-hero {
  background: var(--primary);
  color: var(--accent);
  padding: 72px 0 60px;
  text-align: center;
}
.page-hero h1    { color: var(--accent); margin-bottom: 14px; }
.page-hero p     { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin: 0; }
.page-hero .label { color: rgba(255,255,255,0.6); }

/* Cards */
.card          { background: var(--accent); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); }
.card:hover    { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-body     { padding: 24px; }

/* Product Cards */
.product-card {
  background: var(--accent);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.product-emoji { font-size: 2.2rem; margin-bottom: 4px; }
.product-tag {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(138,36,24,0.08);
  padding: 2px 8px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}
.product-name  { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--dark); }
.product-desc  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.product-price { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--primary); margin-top: 6px; }

/* Category Cards */
.cat-card {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.cat-card:hover,
.cat-card.active {
  border-color: var(--primary);
  background: var(--primary);
}
.cat-card:hover h3,
.cat-card:hover p,
.cat-card.active h3,
.cat-card.active p { color: var(--accent); }
.cat-icon { font-size: 2.8rem; margin-bottom: 16px; }
.cat-card h3 { color: var(--dark); margin-bottom: 8px; transition: var(--transition); }
.cat-card p  { color: var(--text-muted); font-size: 0.875rem; transition: var(--transition); }

/* Grid Utilities */
.grid      { display: grid; gap: 24px; }
.grid-2    { grid-template-columns: repeat(2, 1fr); }
.grid-3    { grid-template-columns: repeat(3, 1fr); }
.grid-4    { grid-template-columns: repeat(4, 1fr); }
.grid-auto    { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.grid-auto-lg { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

/* Menu Filters */
.menu-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: var(--accent);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--accent); }

/* Feature Boxes */
.feature-box { text-align: center; padding: 36px 24px; }
.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(138,36,24,0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 20px;
}
.feature-box h3 { margin-bottom: 10px; }
.feature-box p  { color: var(--text-muted); font-size: 0.925rem; }

/* CTA Section */
.cta-section {
  background: var(--primary);
  color: var(--accent);
  text-align: center;
  padding: 88px 0;
}
.cta-section h2 { color: var(--accent); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.82); margin-bottom: 36px; font-size: 1.1rem; }
.cta-section .label { color: rgba(255,255,255,0.58); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Forms */
.form-group     { margin-bottom: 20px; }
.form-row       { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label     { display: block; font-weight: 500; font-size: 0.875rem; color: var(--dark); margin-bottom: 6px; }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  color: var(--text);
  background: var(--accent);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(138,36,24,0.08);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* Info Cards */
.info-card {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}
.info-card h3 { margin-bottom: 10px; }
.info-card p  { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 4px; }
.info-card .hours { font-family: var(--font-label); font-size: 0.82rem; color: var(--primary); font-weight: 500; margin-top: 10px; }

/* Value Cards */
.value-card   { background: var(--light); border-radius: var(--radius); padding: 32px; }
.value-number { font-family: var(--font-heading); font-weight: 700; font-size: 3rem; color: rgba(138,36,24,0.14); line-height: 1; margin-bottom: 12px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p  { color: var(--text-muted); font-size: 0.9rem; }

/* Steps */
.steps-list { display: flex; flex-direction: column; gap: 28px; }
.step        { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 4px; }
.step-content p  { color: var(--text-muted); font-size: 0.9rem; }

/* Benefits List */
.benefit-list { display: flex; flex-direction: column; gap: 16px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(138,36,24,0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.benefit-item h4 { margin-bottom: 2px; font-size: 1rem; }
.benefit-item p  { color: var(--text-muted); font-size: 0.875rem; }

/* Position Cards (Career) */
.position-card {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 22px 26px;
  border: 1.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.position-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.position-info h4 { margin-bottom: 6px; }
.position-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.position-badge {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--light);
  color: var(--text-muted);
}
.position-badge.badge-primary { background: rgba(138,36,24,0.09); color: var(--primary); }

/* Timeline (Story) */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -30px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-year {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 4px;
}
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p  { color: var(--text-muted); font-size: 0.9rem; }

/* Contact Info Block */
.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item  { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon  { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p  { color: var(--text-muted); font-size: 0.9rem; }
.contact-info-item a  { color: var(--primary); }
.contact-info-item a:hover { text-decoration: underline; }

/* Notice */
.notice {
  background: var(--light);
  border-left: 3px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Stat Boxes */
.stat-box { text-align: center; padding: 32px 24px; }
.stat-value { font-family: var(--font-heading); font-weight: 700; font-size: 3rem; color: var(--primary); display: block; line-height: 1; margin-bottom: 8px; }
.stat-label { font-family: var(--font-label); font-weight: 500; font-size: 0.875rem; letter-spacing: 0.06em; color: var(--text-muted); text-transform: uppercase; }

/* Admin */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 250px;
  background: var(--dark);
  color: var(--accent);
  padding: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-header { padding: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-sidebar nav ul { padding: 10px 0; flex: 1; }
.admin-sidebar nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.admin-sidebar nav li a:hover,
.admin-sidebar nav li a.active { color: var(--accent); background: rgba(255,255,255,0.07); }
.admin-main    { flex: 1; background: var(--bg); padding: 40px; overflow: auto; }
.admin-topbar  { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-card    { background: var(--accent); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.admin-stat    { background: var(--accent); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); text-align: center; }
.admin-stat .stat-value { font-size: 2rem; }
.admin-login   { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--light); }
.admin-login-box { background: var(--accent); border-radius: var(--radius-lg); padding: 48px; width: 100%; max-width: 420px; box-shadow: var(--shadow-md); }

/* Legal pages */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 12px; color: var(--dark); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p  { color: var(--text-muted); font-size: 0.95rem; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 1rem; }
.legal-content ul li { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 6px; }

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 1.5px dashed var(--border);
}
.map-placeholder .map-icon { font-size: 2.5rem; }

/* Utilities */
.text-center    { text-align: center; }
.text-left      { text-align: left; }
.text-right     { text-align: right; }
.text-primary   { color: var(--primary) !important; }
.text-muted     { color: var(--text-muted) !important; }
.text-white     { color: var(--accent) !important; }
.bg-light       { background: var(--light); }
.bg-white       { background: var(--accent); }
.bg-primary     { background: var(--primary); }
.bg-dark        { background: var(--dark); }
.mt-8  { margin-top: 2rem; }
.mb-8  { margin-bottom: 2rem; }
.mt-4  { margin-top: 1rem; }
.mb-4  { margin-bottom: 1rem; }
.gap-8 { gap: 2rem; }
.hidden { display: none !important; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .brand-text { color: var(--accent); font-size: 1.5rem; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.65; color: rgba(255,255,255,0.55); }
.footer-tagline {
  font-family: var(--font-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  display: block;
}
.footer h4 {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: var(--font-label);
}
.footer ul li { margin-bottom: 10px; }
.footer ul a  { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: var(--transition); }
.footer ul a:hover { color: var(--accent); }
.footer-contact-info p { font-size: 0.875rem; margin-bottom: 6px; }
.footer-contact-info a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact-info a:hover { color: var(--accent); }
.footer-social { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social a {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  transition: var(--transition);
}
.footer-social a:hover { color: var(--accent); border-color: rgba(255,255,255,0.35); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .navbar-nav a { font-size: 0.82rem; padding: 6px 8px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .navbar-toggle { display: flex; }
  .navbar-nav {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: -24px;
    right: -24px;
    background: var(--accent);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 0;
  }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { padding: 11px 24px; border-radius: 0; }
  .lang-switcher { margin-right: 48px; }
  .section    { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { min-height: 72vh; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .position-card { flex-direction: column; align-items: flex-start; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .admin-main { padding: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 52px 0 44px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .menu-filters { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 0.8rem; }
  .hero-content { padding: 0 4px; }
  h1 { font-size: 1.9rem; }
}
