/* Art Deco Lifestyle Nutrition Education — Thisdomaindontexist123.ddd */

:root {
  --teal: #00c2b5;
  --teal-dark: #009a90;
  --teal-light: #008f86;
  --gold: #c9952e;
  --gold-light: #a67c1a;
  --text: #1a2332;
  --text-soft: #3d4a5c;
  --text-muted: #5c6678;
  --bg: #faf8f4;
  --bg-soft: #f0ebe3;
  --bg-card: #ffffff;
  --bg-teal: #ddf5f3;
  --bg-warm: #f5f0e6;
  --border: rgba(201, 149, 46, 0.4);
  --shadow: 0 2px 16px rgba(26, 35, 50, 0.08);
  --white: #ffffff;
  --danger: #c0392b;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --header-h: 72px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus-visible {
  color: var(--gold-light);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

ul, ol { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: 0.5rem; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Art Deco decorative elements */
.deco-line {
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  margin: 1rem 0;
}

.deco-border {
  border: 2px solid var(--gold);
  position: relative;
}

.deco-border::before,
.deco-border::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--teal);
  background: var(--bg-card);
}

.deco-border::before { top: -6px; left: -6px; }
.deco-border::after { bottom: -6px; right: -6px; }

.deco-pattern {
  background-image:
    linear-gradient(135deg, rgba(0, 194, 181, 0.1) 25%, transparent 25%),
    linear-gradient(225deg, rgba(0, 194, 181, 0.1) 25%, transparent 25%),
    linear-gradient(45deg, rgba(201, 149, 46, 0.07) 25%, transparent 25%),
    linear-gradient(315deg, rgba(201, 149, 46, 0.07) 25%, transparent 25%);
  background-size: 40px 40px;
}

/* Disclaimer bar */
.disclaimer-bar {
  background: var(--bg-teal);
  color: var(--text-soft);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(0, 194, 181, 0.3);
}

.disclaimer-bar a {
  color: var(--teal-dark);
  font-weight: 600;
}

.disclaimer-bar strong {
  color: var(--text);
}

.disclaimer-bar p {
  margin: 0;
  max-width: 960px;
  margin-inline: auto;
  line-height: 1.5;
}

.disclaimer-bar strong {
  color: var(--text);
}

.footer-contact {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--teal-dark);
}

.ads-notice {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-inline: auto;
}

.service-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-pricing .card {
  text-align: center;
}

.service-pricing .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-dark);
  margin: 0.5rem 0;
}

@media (max-width: 900px) {
  .service-pricing {
    grid-template-columns: 1fr;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 2px solid var(--gold);
  box-shadow: var(--shadow);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.logo-link:hover {
  color: var(--teal-dark);
}

.logo-link img {
  width: 44px;
  height: 44px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Plain text navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  color: var(--text);
  font-size: 1.4rem;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  line-height: 1;
}

.menu-toggle:hover {
  background: var(--bg-teal);
  color: var(--teal-dark);
}

/* Hero — full screen parallax */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: calc(var(--header-h) + 28px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 248, 244, 0.92) 0%,
    rgba(250, 248, 244, 0.82) 50%,
    rgba(250, 248, 244, 0.94) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.25rem;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--text);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-soft);
  text-shadow: none;
  margin-bottom: 2rem;
}

.hero-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-deco span {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.hero-deco i {
  color: var(--teal);
  font-size: 1.2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--gold);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  outline: none;
}

.btn-primary {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Sections */
section {
  padding: 4.5rem 0;
}

.section-dark {
  background: var(--bg-card);
  color: var(--text);
}

.section-teal {
  background: var(--bg-teal);
  color: var(--text);
}

.section-teal h2,
.section-teal h3,
.section-teal p,
.section-teal li {
  color: var(--text);
}

.section-teal a {
  color: var(--teal-dark);
  font-weight: 700;
}

.section-teal a:hover {
  color: var(--gold-light);
}

.section-mid {
  background: var(--bg-soft);
  color: var(--text);
}

.section-cream {
  background: var(--bg-warm);
  color: var(--text);
}

.section-cream h2,
.section-cream h3 {
  color: var(--text);
}

.section-cream p,
.section-cream li {
  color: var(--text-soft);
}

.section-cream a {
  color: var(--teal-dark);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header .deco-line {
  margin: 1rem auto;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Cards */
.card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
}

.section-cream .card {
  background: var(--bg-card);
  border-color: var(--teal);
}

.card:hover {
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-teal .card-icon {
  color: var(--teal-dark);
}

.card h3 {
  color: inherit;
}

/* Image blocks */
.image-block {
  position: relative;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.image-block .deco-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid var(--teal);
  pointer-events: none;
}

/* Parallax section */
.parallax-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 5rem 0;
}

.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 244, 0.9);
}

.parallax-section h2,
.parallax-section p {
  color: var(--text);
}

.parallax-section .container {
  position: relative;
  z-index: 1;
}

/* Feature list */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 194, 181, 0.2);
}

.feature-list li i {
  color: var(--teal);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.section-teal .feature-list li i {
  color: var(--teal-dark);
}

/* Numbered steps */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  counter-increment: step;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  position: relative;
  background: var(--bg-card);
  margin-bottom: 1rem;
  border-left: 3px solid var(--teal);
  box-shadow: var(--shadow);
  color: var(--text);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}

/* Swap table */
.swap-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.swap-table th,
.swap-table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid rgba(212, 168, 83, 0.3);
}

.swap-table th {
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.swap-table tr:nth-child(even) {
  background: rgba(0, 194, 181, 0.12);
}

.swap-table td {
  color: var(--text);
}

/* FAQ accordion */
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.section-cream .faq-item {
  background: var(--bg-card);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  padding: 1.25rem 3rem 1.25rem 1.25rem;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-cream .faq-question {
  color: var(--text);
}

.faq-question i.fa-circle-question {
  color: var(--teal);
  flex-shrink: 0;
}

.faq-question::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1.25rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
}

.section-cream .faq-answer-inner {
  color: var(--text-soft);
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

/* Events calendar */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.section-cream .event-card {
  background: var(--bg-card);
}

.event-date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--teal);
  color: var(--white);
  padding: 0.5rem;
  font-weight: 700;
}

.event-date .day {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  font-family: var(--font-display);
}

.event-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.event-info h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.section-cream .event-info h4 {
  color: var(--text);
}

.event-info p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-muted);
}

.section-cream .event-info p {
  color: var(--text-soft);
}

/* Health guidelines */
.guidelines-box {
  background: var(--bg-card);
  border: 2px solid var(--teal);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow);
  color: var(--text);
}

.guidelines-box::before {
  content: "\f0fa";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -14px;
  left: 2rem;
  background: var(--teal);
  color: var(--white);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.guidelines-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.guidelines-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 194, 181, 0.15);
}

.guidelines-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* Contact form */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--text);
}

.section-cream .form-group label {
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.section-cream .form-group input,
.section-cream .form-group textarea {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--teal);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
  accent-color: var(--teal);
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 194, 181, 0.2);
}

.contact-details i {
  color: var(--teal);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  margin-top: 0.15rem;
}

.map-wrap {
  margin-top: 2rem;
  border: 3px solid var(--gold);
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  display: block;
}

/* Policy pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 2.5rem;
  font-size: 1.4rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}

/* Success page */
.success-box {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.success-box i {
  font-size: 4rem;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--bg-soft);
  border-top: 3px solid var(--gold);
  padding: 3rem 0 1.5rem;
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--teal-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-ads-notice {
  max-width: 720px;
  margin: 0 auto 1rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.footer-contact li {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-card);
  border-top: 3px solid var(--teal);
  padding: 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(26, 35, 50, 0.12);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.cookie-text p {
  margin: 0;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-buttons .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26, 35, 50, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  max-width: 520px;
  width: 100%;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
  color: var(--text);
}

.cookie-modal-content h3 {
  margin-bottom: 1rem;
}

.cookie-category {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 168, 83, 0.3);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-category p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-soft);
  border: 1px solid var(--gold);
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--teal);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
  background: var(--white);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Page hero (internal) */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: var(--bg-soft);
  margin-top: calc(var(--header-h) + 28px);
  border-bottom: 3px solid var(--teal);
  color: var(--text);
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Inner page hero with image */
.page-hero-image {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  margin-top: calc(var(--header-h) + 28px);
  text-align: center;
}

.page-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 248, 244, 0.9) 0%,
    rgba(250, 248, 244, 0.8) 50%,
    rgba(250, 248, 244, 0.92) 100%
  );
}

.page-hero-image .hero-content h1,
.page-hero-image .hero-content p {
  color: var(--text);
  text-shadow: none;
}

.page-hero-image .hero-content p {
  color: var(--text-soft);
}

.page-hero-image .hero-content {
  position: relative;
  z-index: 1;
}

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, rgba(0, 194, 181, 0.12), rgba(201, 149, 46, 0.08));
  border-left: 4px solid var(--teal);
  padding: 1.5rem;
  margin: 1.5rem 0;
  color: var(--text);
}

.section-teal .highlight-box {
  background: rgba(255, 255, 255, 0.65);
  border-left-color: var(--teal-dark);
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  color: var(--text);
}

.stat-item i {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.stat-item .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

/* Responsive — 320px and up */
@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .footer-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .grid-2.reverse-mobile {
    direction: ltr;
  }

  .grid-2.reverse-mobile .image-block {
    order: -1;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-h) + 28px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .main-nav.open {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
  }

  .hero,
  .parallax-section,
  .page-hero-image {
    background-attachment: scroll;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  section {
    padding: 3rem 0;
  }

  .logo-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 64px;
  }

  .container {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
    width: 100%;
  }

  .btn-group {
    flex-direction: column;
  }

  .swap-table {
    font-size: 0.85rem;
  }

  .swap-table th,
  .swap-table td {
    padding: 0.6rem;
  }

  .event-card {
    flex-direction: column;
  }

  .map-wrap iframe {
    height: 280px;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .logo-link img {
    width: 36px;
    height: 36px;
  }

  .logo-text {
    font-size: 0.65rem;
    max-width: 140px;
  }

  .hero-content {
    padding: 1.5rem 0.75rem;
  }

  .card {
    padding: 1.25rem;
  }

  .cookie-modal-content {
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
