@import url('https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css');

:root {
  --primary: #e52515;
  --primary-dark: #b81d10;
  --primary-light: #ff3d2e;
  --bg-light: #faf9f7;
  --bg-cream: #f3f0ec;
  --bg-dark: #1a1a1a;
  --bg-card: #ffffff;
  --bg-section-alt: #2c2c2c;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #4a4a4a;
  --border: #e0dcd6;
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.1);
  --radius: 12px;
  --transition: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.disclaimer-bar {
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.publisher-strip {
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.publisher-strip a {
  color: var(--primary);
  text-decoration: underline;
}

.publisher-strip strong {
  color: var(--text-dark);
}

.ai-disclosure-bar {
  background: #2a1510;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  line-height: 1.55;
}

.ai-disclosure-bar a {
  color: #ff8a7a;
  text-decoration: underline;
}

.ai-disclosure-bar a:hover {
  color: #ffb3a8;
}

.site-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.logo-link img {
  width: 42px;
  height: 42px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
}

.main-nav ul {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  color: var(--text-dark);
  padding: 8px 12px;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--primary);
  color: var(--text-light);
}

.hero-interactive {
  position: relative;
  min-height: 560px;
  background: var(--bg-dark);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #3d1510 50%, #1a1a1a 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-light);
}

.hero-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0.92;
  max-width: 520px;
}

.hero-cards {
  position: relative;
  z-index: 2;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(229, 37, 21, 0.4);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--text-light);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-card:hover,
.hero-card.active {
  transform: translateX(-8px);
  background: rgba(229, 37, 21, 0.2);
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(229, 37, 21, 0.3);
}

.hero-card i {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.hero-card p {
  font-size: 0.88rem;
  opacity: 0.85;
}

.hero-image-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  z-index: 1;
  opacity: 0.35;
  overflow: hidden;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual {
  position: relative;
  z-index: 2;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition);
}

.hero-visual-wrap:hover {
  transform: scale(1.02);
}

.hero-visual-wrap img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 37, 21, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--bg-dark);
}

.btn-secondary {
  background: var(--bg-dark);
  color: var(--text-light);
}

.btn-secondary:hover {
  background: #333;
  color: var(--text-light);
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--bg-cream);
}

.section-dark {
  background: var(--bg-section-alt);
  color: var(--text-light);
}

 

.section-dark a:hover {
  color: #ff9589;
}

.section-dark .text-muted {
  color: rgba(255, 255, 255, 0.75);
}

.section-primary {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--text-light);
}

.section-primary a {
  color: var(--text-light);
  text-decoration: underline;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-dark .section-header p,
.section-primary .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26, 26, 26, 0.12);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(229, 37, 21, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon i {
  font-size: 1.6rem;
  color: var(--primary);
}

.section-dark .card-icon {
  background: rgba(229, 37, 21, 0.25);
}

.section-dark .card-icon i {
  color: #ff6b5e;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-dark .card p {
  color: rgba(255, 255, 255, 0.78);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.split-content {
  background: #ffffff;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
  line-height: 1.25;
  color: #1a1a1a;
}

.split-content p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.section-dark .split-content,
.section-dark .split-content h2,
.section-primary .split-content,
.section-primary .split-content h2 {
  color: #1a1a1a;
}

.section-dark .split-content p,
.section-primary .split-content p {
  color: var(--text-muted);
}

.section-dark .split-content .feature-list li {
  color: var(--text-muted);
}

.section-primary .split-content .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}

.section-primary .split-content .btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

.split-image {
  min-height: 380px;
  background-color: #f0f0f0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.split-image--full {
  background-size: contain;
  background-color: #ffffff;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.feature-list i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.section-dark .feature-list li {
  color: rgba(255, 255, 255, 0.85);
}

.section-dark .feature-list i {
  color: #ff6b5e;
}

.numbered-list {
  counter-reset: item;
}

.numbered-list li {
  counter-increment: item;
  position: relative;
  padding-left: 48px;
  margin-bottom: 20px;
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 3px solid var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--bg-light);
}

.section-alt .timeline-item::before {
  border-color: var(--bg-cream);
}

.timeline-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-box {
  background: var(--bg-card);
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  margin: 24px 0;
}

.info-box h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.quote-block {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 36px 40px;
  border-radius: var(--radius);
  font-style: italic;
  font-size: 1.1rem;
  position: relative;
  margin: 32px 0;
}

.quote-block::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--primary);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
  font-style: normal;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-item .stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.section-dark .stat-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}

.section-dark .faq-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 24px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-dark);
}

.section-dark .faq-question {
  color: var(--text-light);
}

.faq-question i {
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-dark .faq-answer p {
  color: rgba(255, 255, 255, 0.78);
}

.events-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.event-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  transition: transform var(--transition);
}

.event-card:hover {
  transform: translateY(-3px);
}

.event-date {
  background: var(--primary);
  color: var(--text-light);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  min-width: 64px;
  flex-shrink: 0;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-details h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.event-details p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.section-dark .event-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .event-details p {
  color: rgba(255, 255, 255, 0.72);
}

.interactive-panel {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 640px;
  margin: 0 auto;
}

.interactive-panel h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.prep-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.prep-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-light);
  text-align: left;
  width: 100%;
}

.prep-option:hover,
.prep-option.selected {
  border-color: var(--primary);
  background: rgba(229, 37, 21, 0.06);
}

.prep-option input {
  accent-color: var(--primary);
}

.prep-results {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.prep-results.visible {
  display: block;
}

.prep-move {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--bg-cream);
  border-radius: 8px;
}

.prep-move i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.prep-move h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.prep-move p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.inline-cta {
  margin-top: 28px;
}

.page-hero {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 56px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}

.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.88;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-card);
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.checkbox-group input {
  margin-top: 4px;
  accent-color: var(--primary);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.success-content i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.success-content h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.success-content p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 28px;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.policy-content h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.policy-content .updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.policy-content h2 {
  font-size: 1.3rem;
  margin: 32px 0 14px;
  color: var(--primary-dark);
}

.policy-content p,
.policy-content li {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ff6b5e;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.cookie-text a {
  color: #ff6b5e;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-actions .btn {
  font-size: 0.85rem;
  padding: 10px 18px;
}

.cookie-settings-panel {
  width: 100%;
  display: none;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 8px;
}

.cookie-settings-panel.visible {
  display: block;
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.cookie-toggle-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cookie-toggle-row input[type="checkbox"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}

.cookie-toggle-row.disabled {
  opacity: 0.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.tag {
  background: rgba(229, 37, 21, 0.1);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.section-dark .tag {
  background: rgba(229, 37, 21, 0.25);
  color: #ff9589;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.checklist-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: #1a1a1a;
}

.checklist-item i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.section-dark .checklist-item,
.section-primary .checklist-item {
  background: #ffffff;
  border-color: var(--border);
  color: #1a1a1a;
}

@media (max-width: 960px) {
  .hero-interactive {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-image-panel {
    width: 100%;
    opacity: 0.2;
  }

  .split-section,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 260px;
  }

  .split-content {
    padding: 32px 28px;
  }

  .hero-content {
    padding: 48px 24px;
  }

  .hero-cards {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    max-height: 480px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 12px 16px 20px;
  }

  .main-nav a {
    display: block;
    padding: 12px 16px;
  }

  .site-header {
    position: relative;
  }

  .section {
    padding: 52px 0;
  }

  .logo-link img {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
    justify-content: center;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .interactive-panel {
    padding: 24px 18px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .header-inner {
    padding: 10px 12px;
  }

  .logo-link img {
    width: 36px;
    height: 36px;
  }

  .hero-content {
    padding: 36px 14px;
  }

  .hero-card {
    padding: 14px 16px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  .section-header h2 {
    font-size: 1.35rem;
  }

  .map-wrap iframe {
    height: 280px;
  }
}
