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

:root {
  --red: #cc0000;
  --red-dark: #990000;
  --red-light: #e63946;
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-50: #f8f8f8;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-300: #c8c8c8;
  --gray-400: #a0a0a0;
  --gray-500: #808080;
  --gray-600: #606060;
  --gray-700: #404040;
  --gray-800: #2a2a2a;
  --gray-900: #1a1a1a;
  --black: #000000;
  --text: #000000;
  --text-light: #606060;
  --gold: #d4a843;
  --gold-light: #f0d68a;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.1);
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

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

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.3s;
}

.navbar.scrolled .nav-logo a {
  color: var(--black);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon svg {
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.navbar.scrolled .nav-links > li > a,
.navbar.scrolled .nav-dropdown-trigger {
  color: var(--gray-700);
}

.nav-links > li > a:hover,
.nav-dropdown-trigger:hover {
  color: var(--red-light);
  background: rgba(255,255,255,0.08);
}

.navbar.scrolled .nav-links > li > a:hover,
.navbar.scrolled .nav-dropdown-trigger:hover {
  color: var(--red);
  background: rgba(204,0,0,0.06);
}

.dropdown-arrow {
  font-size: 0.5rem;
  transition: transform 0.25s;
}

.nav-links > li:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}

.nav-links > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.45rem 1.2rem;
  font-size: 0.88rem;
  color: var(--gray-700);
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.nav-btn-donate {
  background: var(--red);
  color: var(--white);
}

.nav-btn-donate:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.nav-btn-shop {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.navbar.scrolled .nav-btn-shop {
  color: var(--gray-700);
  border-color: var(--gray-300);
}

.nav-btn-shop:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.nav-btn-lang {
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.7rem;
  border: 1.5px solid rgba(204,0,0,0.6);
}

.navbar.scrolled .nav-btn-lang {
  color: var(--gray-500);
}

.nav-btn-lang:hover {
  color: var(--red);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  position: relative;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar.scrolled .hamburger span {
  background: var(--black);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.hamburger.active span {
  background: var(--black);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.41) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 0;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(204,0,0,0.15);
  border: 1px solid rgba(204,0,0,0.35);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red-light);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 strong {
  font-weight: 600;
  color: var(--red-light);
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,0,0,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-header {
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--black);
}

.section-title strong {
  font-weight: 600;
}

.section-sub {
  max-width: 640px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s;
  border: 1px solid var(--gray-100);
}

.card:hover {
  transform: translateY(-4px);
}

.card-img {
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.75rem;
}

.card-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.card-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--red);
  transition: gap 0.2s;
}

.card-link:hover {
  gap: 0.7rem;
}

/* ===== SCHEDULE ===== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.schedule-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.2s;
}

.schedule-item:hover {
  background: var(--gray-50);
}

.schedule-item .day {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.schedule-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.schedule-item .time {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-image {
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  display: block;
}

.feature-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.feature-text p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 300;
}

.feature-text strong {
  font-weight: 600;
  color: var(--black);
}

/* ===== DIVIDER ===== */
.divider {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: 1.5rem 0;
}

.divider-center {
  margin: 1.5rem auto;
}

/* ===== QUOTE ===== */
.quote-section {
  text-align: center;
  padding: 6rem 0;
  max-width: 720px;
  margin: 0 auto;
}

.quote-section blockquote {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.quote-section cite {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== TIMELINE / HISTORY ===== */
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.history-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 2rem;
  transition: transform 0.3s;
}

.history-card:hover {
  transform: translateY(-3px);
}

.history-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.history-card h3 .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.history-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== FACT LIST ===== */
.fact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.fact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.fact-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204,0,0,0.08);
  color: var(--red);
  font-size: 1.1rem;
}

.fact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.fact-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

/* ===== EVENTS ===== */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.event-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  padding: 1.2rem 1.5rem;
  transition: background 0.2s;
}

.event-item:hover {
  background: var(--gray-50);
}

.event-date {
  text-align: center;
  min-width: 56px;
  flex-shrink: 0;
}

.event-date .month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}

.event-date .day {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--black);
}

.event-info h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.1rem;
}

.event-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.event-tag {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.contact-detail .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  color: var(--red);
  font-size: 0.9rem;
}

.contact-detail div {
  font-size: 0.92rem;
  color: var(--text-light);
}

.contact-detail strong {
  display: block;
  font-weight: 600;
  color: var(--black);
}

.map-container {
  min-height: 350px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.map-placeholder {
  width: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== FORM ===== */
.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group.single {
  grid-template-columns: 1fr;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--black);
  transition: border-color 0.2s;
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--red);
}

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

/* ===== ACTIONS BAR ===== */
.actions-bar {
  background: var(--black);
  padding: 1rem 0;
  text-align: center;
}

.actions-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.actions-bar .btn {
  padding: 0.7rem 1.8rem;
  font-size: 0.85rem;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.85);
  padding: 1.25rem 0;
  font-size: 0.88rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-consent p {
  flex: 1;
  min-width: 260px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.cookie-consent p a {
  color: var(--red-light);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.55rem 1.3rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s;
}

.cookie-btn-accept {
  background: var(--red);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--red-dark);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-reject:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  padding: 0.55rem 0.5rem;
  font-size: 0.78rem;
}

.cookie-btn-settings:hover {
  color: var(--white);
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cookie-modal.open {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-inner {
  background: var(--white);
  color: var(--black);
  max-width: 520px;
  width: 90%;
  border-radius: 12px;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.cookie-modal.open .cookie-modal-inner {
  transform: translateY(0);
}

.cookie-modal h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cookie-modal p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.cookie-option-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle .slider {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-toggle .slider::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s;
}

.cookie-toggle input:checked + .slider {
  background: var(--red);
}

.cookie-toggle input:checked + .slider::after {
  transform: translateX(20px);
}

.cookie-toggle.disabled .slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cookie-modal-actions .btn {
  flex: 1;
  justify-content: center;
  text-align: center;
}
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-grid .footer-links-row {
  display: flex;
  gap: 3rem;
}

.footer-grid .footer-links-row .footer-links {
  flex: 1;
}

.footer-brand .logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 300px;
}

.footer h5 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red-light);
  margin-bottom: 1.2rem;
}

.footer-links a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .feature-grid { grid-template-columns: 1fr; gap: 2rem; }
  .history-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.35s;
    overflow-y: auto;
    z-index: 100;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links > li { width: 100%; }

  .nav-links > li > a,
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.8rem 0;
    color: var(--gray-700) !important;
    border-radius: 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-links > li > a:hover,
  .nav-dropdown-trigger:hover {
    background: transparent !important;
    color: var(--red) !important;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0.5rem 0.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
  }

  .nav-links > li.open .dropdown-menu { display: block; }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 0;
    gap: 0.5rem;
  }

  .nav-actions .nav-btn {
    width: 100%;
    justify-content: center;
  }

  .nav-btn-shop {
    color: var(--gray-700) !important;
    border-color: var(--gray-300) !important;
  }

  .nav-btn-lang {
    color: var(--gray-700) !important;
    border-color: var(--red) !important;
  }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .section { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-links-row { flex-direction: column; gap: 2rem; }
  .event-item { flex-wrap: wrap; gap: 0.5rem; }
  .event-tag { margin-left: 0; }
  .form-group { grid-template-columns: 1fr; }
}

/* ===== UTILITY ===== */
.page-wrapper {
  padding-top: 80px;
  min-height: 100vh;
}

.page-hero-sm {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--gray-100);
}

.page-hero-sm h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.page-hero-sm p {
  color: var(--text-light);
  font-weight: 300;
  margin-top: 0.25rem;
}

.content-section {
  padding: 4rem 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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