@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Poiret+One&display=swap');

:root {
  --primary: #8faebe;
  --primary-dark: #6a8fa3;
  --primary-light: #b5c9d4;
  --bg-dark: #1a2332;
  --bg-darker: #12151f;
  --bg-cream: #f5f0e8;
  --bg-alt: #e8e2d6;
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --text-dark: #1a2332;
  --text-light: #f5f0e8;
  --text-muted: #4a5568;
  --contrast-icon: #c9a227;
  --section-padding: 5rem 2rem;
  --transition: 0.3s ease;
  --deco-line: 2px solid var(--gold);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: 'Poiret One', cursive;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.deco-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.deco-divider::before,
.deco-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.deco-divider i {
  color: var(--gold);
  font-size: 1rem;
}

.disclaimer-bar {
  background: var(--bg-darker);
  color: var(--text-light);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  border-bottom: 2px solid var(--gold);
}

.disclaimer-bar p {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.95;
}

header {
  background: var(--bg-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-link img {
  height: 45px;
  width: auto;
}

.logo-text {
  font-family: 'Poiret One', cursive;
  color: var(--text-light);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

.nav-desktop {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-desktop a {
  color: var(--text-light);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 0.3rem 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold-light);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.4rem;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  border-radius: 0;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 2000;
  padding: 5rem 2rem 2rem;
  transition: right var(--transition);
  border-left: 3px solid var(--gold);
  overflow-y: auto;
}

.nav-mobile.open {
  right: 0;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-mobile a {
  color: var(--text-light);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(143, 174, 190, 0.3);
}

.nav-mobile a:hover {
  color: var(--gold);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1999;
}

.nav-overlay.visible {
  display: block;
}

.menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.85) 0%,
    rgba(26, 35, 50, 0.65) 50%,
    rgba(143, 174, 190, 0.4) 100%
  );
  z-index: 1;
}

.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-deco::before,
.hero-deco::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  opacity: 0.3;
}

.hero-deco::before {
  top: 10%;
  left: 5%;
  transform: rotate(45deg);
}

.hero-deco::after {
  bottom: 10%;
  right: 5%;
  transform: rotate(45deg);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  color: var(--bg-cream);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 600;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--bg-dark);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

.btn-dark:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg-dark);
}

section {
  padding: var(--section-padding);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-light);
}

.section-dark p {
  color: var(--bg-alt);
}

.section-primary {
  background: var(--primary);
  color: var(--bg-dark);
}

.section-primary h2,
.section-primary h3 {
  color: var(--bg-darker);
}

.section-primary p {
  color: var(--text-dark);
}

.section-cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.section-alt {
  background: var(--bg-alt);
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: inherit;
  opacity: 0.85;
}

.icon-feature {
  color: var(--contrast-icon);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-dark .icon-feature {
  color: var(--gold);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--bg-cream);
  padding: 2rem;
  border: 2px solid var(--gold);
  position: relative;
  transition: transform var(--transition);
}

.section-dark .card {
  background: rgba(245, 240, 232, 0.08);
  border-color: var(--primary-light);
  color: var(--text-light);
}

.section-dark .card p {
  color: var(--bg-alt);
}

.card:hover {
  transform: translateY(-4px);
}

.card-deco {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gold);
}

.card h3 {
  margin: 1rem 0 0.8rem;
  color: var(--text-dark);
}

.section-dark .card h3 {
  color: var(--gold-light);
}

.image-block {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold);
}

.image-block img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.image-block-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 10px,
    var(--primary) 10px,
    var(--primary) 20px
  );
}

.split-content h2 {
  margin-bottom: 1rem;
}

.split-content p {
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(143, 174, 190, 0.3);
}

.feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold);
}

.numbered-list {
  counter-reset: item;
  list-style: none;
}

.numbered-list li {
  counter-increment: item;
  padding: 1rem 0 1rem 3.5rem;
  position: relative;
  border-left: 3px solid var(--primary);
  margin-bottom: 1rem;
  padding-left: 3.5rem;
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0.8rem;
  top: 1rem;
  font-family: 'Poiret One', cursive;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: bold;
}

.checklist {
  list-style: none;
}

.checklist li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
}

.checklist li i {
  position: absolute;
  left: 0;
  color: var(--contrast-icon);
  top: 0.6rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--primary));
}

.timeline-item {
  position: relative;
  padding: 0 0 2rem 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border: 2px solid var(--bg-dark);
  transform: rotate(45deg);
}

.calculator-section {
  background: var(--bg-darker);
  color: var(--text-light);
}

.calculator-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.calc-input-area label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-light);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.calc-input-area input,
.calc-input-area select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 2px solid var(--primary);
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
}

.calc-input-area input:focus,
.calc-input-area select:focus {
  outline: none;
  border-color: var(--gold);
}

.food-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  min-height: 40px;
}

.food-tag {
  background: var(--primary);
  color: var(--bg-dark);
  padding: 0.3rem 0.8rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.food-tag button {
  background: none;
  border: none;
  color: var(--bg-dark);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.plate-visual {
  text-align: center;
}

.plate-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.plate-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  transition: flex-grow 0.5s ease;
}

.plate-veg {
  top: 0;
  left: 0;
  background: rgba(76, 175, 80, 0.7);
  border-radius: 100% 0 0 0;
}

.plate-protein {
  top: 0;
  right: 0;
  background: rgba(198, 40, 40, 0.6);
  border-radius: 0 100% 0 0;
}

.plate-carb {
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 50%;
  background: rgba(255, 193, 7, 0.6);
  border-radius: 0 0 50% 50%;
}

.nutrient-bars {
  margin-top: 1.5rem;
}

.nutrient-bar {
  margin-bottom: 0.8rem;
}

.nutrient-bar label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--primary-light);
}

.bar-track {
  height: 12px;
  background: var(--bg-dark);
  border: 1px solid var(--primary);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  transition: width 0.5s ease;
}

.bar-veg .bar-fill { background: #4caf50; }
.bar-protein .bar-fill { background: #e53935; }
.bar-carb .bar-fill { background: #ffc107; }

.color-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.color-legend span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.faq-item {
  border: 2px solid var(--primary);
  margin-bottom: 1rem;
  background: var(--bg-cream);
}

.section-dark .faq-item {
  background: rgba(245, 240, 232, 0.05);
  border-color: var(--primary-light);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-dark .faq-question {
  color: var(--text-light);
}

.faq-question i {
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-muted);
}

.section-dark .faq-answer-inner {
  color: var(--bg-alt);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.event-card {
  border: 2px solid var(--gold);
  padding: 1.5rem;
  background: var(--bg-cream);
  position: relative;
}

.section-dark .event-card {
  background: rgba(245, 240, 232, 0.06);
}

.event-date {
  font-family: 'Poiret One', cursive;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.event-card h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.section-dark .event-card h4 {
  color: var(--text-light);
}

.event-card p {
  font-size: 0.9rem;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.safety-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  background: rgba(143, 174, 190, 0.15);
}

.safety-item i {
  font-size: 1.8rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: 0.2rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1.2rem;
  border: 2px solid var(--primary);
  background: var(--bg-cream);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.checkbox-wrap input {
  margin-top: 0.3rem;
  width: auto;
}

.checkbox-wrap label {
  font-weight: 400;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.map-wrap {
  border: 3px solid var(--gold);
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 350px;
  display: block;
}

footer {
  background: var(--bg-darker);
  color: var(--text-light);
  padding: 3rem 2rem 1.5rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-grid h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Poiret One', cursive;
  letter-spacing: 0.1em;
}

.footer-grid p,
.footer-grid a {
  color: var(--primary-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(143, 174, 190, 0.3);
  font-size: 0.85rem;
  color: var(--primary-light);
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-darker);
  color: var(--text-light);
  padding: 1.5rem;
  z-index: 9999;
  border-top: 3px solid var(--gold);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
  color: var(--bg-alt);
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-buttons .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
}

.cookie-settings {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(143, 174, 190, 0.3);
}

.cookie-settings.open {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(143, 174, 190, 0.2);
}

.cookie-category label {
  font-size: 0.9rem;
}

.cookie-category small {
  display: block;
  color: var(--primary-light);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  bottom: 2px;
  background: var(--primary-light);
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
  background: var(--gold);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.policy-content h1 {
  margin-bottom: 1rem;
  color: var(--bg-dark);
}

.policy-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.policy-content p,
.policy-content li {
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.success-box {
  max-width: 600px;
  padding: 3rem;
  border: 3px solid var(--gold);
  background: var(--bg-cream);
}

.success-box i {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.success-box h1 {
  margin-bottom: 1rem;
}

.success-box p {
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Poiret One', cursive;
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-block {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(143, 174, 190, 0.15);
  font-style: italic;
}

.quote-block cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--primary-dark);
}

.tip-box {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1.5rem;
  border: 2px solid var(--gold);
  margin: 1.5rem 0;
}

.tip-box h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.tip-box p {
  color: var(--bg-alt);
  font-size: 0.95rem;
}

.trust-box {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 2rem;
  border: 2px solid var(--gold);
}

.trust-box h3 {
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.trust-box h3 i {
  color: var(--gold);
  margin-right: 0.4rem;
}

.trust-box .checklist li {
  color: var(--bg-alt);
  border-bottom-color: rgba(143, 174, 190, 0.2);
}

.footer-contact {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--primary-light);
}

.content-notice {
  background: var(--bg-alt);
  border-bottom: 2px solid var(--primary-dark);
  padding: 1rem 1.5rem;
}

.content-notice p {
  max-width: 920px;
  margin: 0 auto;
  font-size: 0.88rem;
  text-align: center;
  color: var(--text-dark);
  line-height: 1.6;
}

.content-notice i {
  color: var(--gold);
  margin-right: 0.3rem;
}

.content-notice a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.footer-legal-note {
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-top: 0.8rem;
  line-height: 1.6;
}

.footer-legal-note a {
  color: var(--gold-light);
}

.calc-disclaimer {
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-top: 1rem;
  padding: 0.8rem;
  border: 1px solid var(--primary);
  background: rgba(26, 35, 50, 0.5);
  text-align: left;
}

@media (max-width: 992px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .calculator-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-mobile {
    display: block;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .contact-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3.5rem 1.2rem;
  }

  .hero {
    min-height: 85vh;
  }

  .image-block img {
    height: 250px;
  }

  .plate-circle {
    width: 220px;
    height: 220px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0.6rem 1rem;
  }

  .logo-text {
    font-size: 0.85rem;
  }

  .logo-link img {
    height: 35px;
  }

  .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.75rem;
  }

  .stats-row {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.8rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .card {
    padding: 1.2rem;
  }

  .nav-mobile {
    width: 100%;
    max-width: 100%;
  }

  .cookie-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .plate-circle {
    width: 180px;
    height: 180px;
  }
}
