@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --gold: #ffe884;
  --gold-dark: #e6c84a;
  --navy: #1a2744;
  --navy-light: #2a3f66;
  --marble: #f5f0e8;
  --marble-dark: #e8e0d0;
  --text-dark: #1a1a2e;
  --text-light: #f5f0e8;
  --accent: #8b2942;
  --white: #ffffff;
  --shadow: rgba(26, 39, 68, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text-dark);
  background: var(--marble);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  line-height: 1.3;
  font-weight: 600;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.meander-border {
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 8px,
    var(--navy) 8px,
    var(--navy) 16px
  );
}

.disclaimer-bar {
  background: var(--navy);
  color: var(--gold);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
}

header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-link img {
  width: 48px;
  height: 48px;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  line-height: 1;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--gold);
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: transform 8s ease, opacity 0.5s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.08);
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.92) 0%, rgba(26,39,68,0.6) 60%, rgba(255,232,132,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 3rem 0;
}

.hero-label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.hero-stat {
  text-align: center;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--gold);
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s;
  cursor: default;
}

.hero-stat:hover {
  background: rgba(255,232,132,0.15);
  transform: translateY(-4px);
}

.hero-stat strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold);
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--marble);
}

.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  text-align: center;
}

.btn:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--navy);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--gold);
}

.section-dark p {
  color: var(--marble);
}

.section-gold {
  background: var(--gold);
  color: var(--navy);
}

.section-gold h2,
.section-gold h3 {
  color: var(--navy);
}

.section-marble {
  background: var(--marble);
}

.section-accent {
  background: var(--marble-dark);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.section-dark .section-header h2::after {
  background: var(--gold);
}

.section-gold .section-header h2::after {
  background: var(--navy);
}

.section-header p.lead {
  font-size: 1.15rem;
  max-width: 700px;
}

.f-shape {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.f-shape-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.f-shape-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.f-shape-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.content-block p {
  margin-bottom: 1rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.image-block {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 3px solid var(--gold);
}

.image-block img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.image-block--full {
  background: var(--marble-dark);
}

.image-block--full img {
  aspect-ratio: auto;
  object-fit: contain;
  height: auto;
  max-height: 560px;
}

.image-block--full figcaption {
  position: static;
}

.image-block figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,39,68,0.85);
  color: var(--gold);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-family: 'Cinzel', serif;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 2px solid var(--gold);
  padding: 1.75rem;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}

.section-dark .card {
  background: var(--navy-light);
  border-color: var(--gold);
  color: var(--marble);
}

.card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-dark .card i {
  color: var(--gold);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.section-dark .card h3 {
  color: var(--gold);
}

.icon-list {
  list-style: none;
}

.icon-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26,39,68,0.1);
}

.section-dark .icon-list li {
  border-bottom-color: rgba(255,232,132,0.15);
}

.icon-list i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.section-dark .icon-list i {
  color: var(--gold);
}

.icon-list strong {
  display: block;
  font-family: 'Cinzel', serif;
  margin-bottom: 0.25rem;
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
}

.numbered-steps li {
  counter-increment: step;
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  margin-bottom: 1rem;
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 4px 4px 0;
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.quote-block {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  background: rgba(255,232,132,0.15);
  font-style: italic;
  font-size: 1.15rem;
  margin: 1.5rem 0;
}

.section-dark .quote-block {
  background: rgba(255,232,132,0.08);
  color: var(--marble);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.highlight-box {
  background: var(--navy);
  color: var(--gold);
  padding: 2rem;
  border-radius: 4px;
  border: 2px solid var(--gold);
}

.highlight-box h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.highlight-box p {
  color: var(--marble);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translateX(-5px);
}

.timeline-item h4 {
  font-family: 'Cinzel', serif;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-dark .timeline-item h4 {
  color: var(--gold);
}

.faq-list details {
  border: 2px solid var(--gold);
  margin-bottom: 0.75rem;
  border-radius: 4px;
  background: var(--white);
}

.section-dark .faq-list details {
  background: var(--navy-light);
}

.faq-list summary {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
}

.section-dark .faq-list summary {
  color: var(--gold);
}

.faq-list summary::before {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--accent);
  transition: transform 0.3s;
}

.section-dark .faq-list summary::before {
  color: var(--gold);
}

.faq-list details[open] summary::before {
  transform: rotate(180deg);
}

.faq-list .faq-answer {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid rgba(26,39,68,0.1);
}

.events-table {
  width: 100%;
  border-collapse: collapse;
}

.events-table th,
.events-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(26,39,68,0.15);
}

.events-table th {
  font-family: 'Cinzel', serif;
  background: var(--navy);
  color: var(--gold);
}

.events-table tr:nth-child(even) {
  background: rgba(255,232,132,0.1);
}

.health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.health-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--gold);
}

.section-dark .health-item {
  background: var(--navy-light);
}

.health-item i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.section-dark .health-item i {
  color: var(--gold);
}

.cta-section {
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 0.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--navy);
  border-radius: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.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;
  flex-shrink: 0;
}

.checkbox-group label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 0.95rem;
}

.map-container {
  margin-top: 2rem;
  border: 3px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
}

footer {
  background: var(--navy);
  color: var(--marble);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--marble);
}

.footer-links h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--marble);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,232,132,0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--marble);
}

.footer-bottom a {
  color: var(--gold);
}

.footer-bottom a:hover {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--marble);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px var(--shadow);
  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: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-buttons .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

.cookie-settings {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,232,132,0.2);
}

.cookie-settings.open {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,232,132,0.1);
}

.cookie-category label {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--navy-light);
  border: 2px solid var(--gold);
  border-radius: 26px;
  transition: background 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: var(--marble);
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--gold);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
  background: var(--navy);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,39,68,0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 4px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-box h3 {
  font-family: 'Cinzel', serif;
  color: var(--navy);
  margin-bottom: 1rem;
}

.modal-box p {
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.modal-box input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--navy);
  border-radius: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
  line-height: 1;
}

.ice-cube-container {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.ice-cube-container.visible {
  display: block;
}

.ice-cube {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #d4f1f9 0%, #a8dff0 50%, #7ec8e3 100%);
  border: 2px solid #5ba8c9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: freezeIn 1s ease forwards;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.5), 0 4px 15px rgba(91,168,201,0.4);
}

.ice-cube-text {
  font-size: 0.65rem;
  color: var(--navy);
  padding: 0.5rem;
  word-break: break-word;
  opacity: 0;
  animation: textFreeze 0.5s ease 0.8s forwards;
}

@keyframes freezeIn {
  0% { transform: scale(0.3) rotate(10deg); opacity: 0; }
  50% { transform: scale(1.1) rotate(-5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes textFreeze {
  to { opacity: 0.8; }
}

.freeze-message {
  font-family: 'Cinzel', serif;
  color: var(--navy);
  font-size: 1rem;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.policy-content h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.policy-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  color: var(--navy);
}

.policy-content p,
.policy-content li {
  margin-bottom: 0.75rem;
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.success-page {
  text-align: center;
  padding: 5rem 0;
  min-height: 50vh;
}

.success-page i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.success-page h1 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.page-hero {
  background: var(--navy);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--gold);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--marble);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--marble);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--gold);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem;
  border: 1px solid var(--gold);
  text-align: left;
}

.comparison-table th {
  background: var(--navy);
  color: var(--gold);
  font-family: 'Cinzel', serif;
}

.comparison-table tr:nth-child(even) {
  background: rgba(255,232,132,0.1);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

@media (max-width: 992px) {
  .f-shape-top,
  .f-shape-bar,
  .f-shape-bottom,
  .two-col,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .main-nav.open {
    max-height: 500px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--marble-dark);
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
  }

  .hero {
    min-height: 420px;
  }

  .hero-stats {
    gap: 0.75rem;
  }

  .hero-stat {
    flex: 1;
    min-width: 100px;
    padding: 0.5rem;
  }

  section {
    padding: 2.5rem 0;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 0.8rem;
  }

  .logo-link img {
    width: 36px;
    height: 36px;
  }

  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.8rem;
    width: 100%;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .events-table {
    font-size: 0.85rem;
  }

  .events-table th,
  .events-table td {
    padding: 0.5rem;
  }

  .map-container iframe {
    height: 280px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .header-inner {
    padding: 0.5rem 0;
  }

  .logo-text {
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-stat strong {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 1.35rem;
  }

  .modal-box {
    padding: 1.25rem;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}

.trust-strip {
  background: var(--navy);
  color: var(--marble);
  padding: 1rem 0;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--gold);
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-strip i {
  color: var(--gold);
}

.content-disclaimer {
  background: rgba(26, 39, 68, 0.06);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

.section-dark .content-disclaimer {
  background: rgba(255, 232, 132, 0.08);
  color: var(--marble);
}

.source-note {
  font-size: 0.9rem;
  color: var(--navy-light);
  margin-top: 1rem;
  font-style: italic;
}

.section-dark .source-note {
  color: var(--marble);
  opacity: 0.85;
}

.footer-disclosure {
  font-size: 0.8rem;
  color: var(--marble);
  opacity: 0.9;
  margin-top: 1rem;
  line-height: 1.5;
}

.footer-contact {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact p {
  margin-bottom: 0.35rem;
}

.footer-contact a {
  color: var(--gold);
}

.map-placeholder {
  background: var(--marble-dark);
  padding: 2.5rem 1.5rem;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.map-placeholder p {
  max-width: 420px;
  color: var(--text-dark);
}

.map-alt {
  font-size: 0.9rem;
}

.cookie-banner[aria-hidden="true"] {
  transform: translateY(100%);
}

.cookie-banner[aria-hidden="false"].visible,
.cookie-banner.visible {
  transform: translateY(0);
}
