@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

:root {
  --accent: #deafa7;
  --accent-dark: #c9958c;
  --navy: #1a3a4a;
  --navy-deep: #0f2833;
  --cream: #f8f4ef;
  --marble: #ece6dc;
  --text: #1c2b33;
  --text-light: #f8f4ef;
  --section-alt: #2d4f5e;
  --section-warm: #3d2e28;
  --gold: #b8956a;
  --shadow: 0 4px 24px rgba(26, 58, 74, 0.15);
  --meander: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  min-width: 320px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

.material-icons {
  vertical-align: middle;
  font-size: 1.35rem;
  color: var(--accent);
}

.disclaimer-bar {
  background: var(--navy-deep);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  text-align: center;
}

.disclaimer-bar p {
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.5;
}

.disclaimer-bar a {
  color: var(--accent);
  text-decoration: underline;
}

.footer-legal {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  line-height: 1.55;
  color: rgba(248, 244, 239, 0.9);
}

.footer-legal a { color: var(--accent); }

.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: inherit;
}

.footer-link-btn:hover { color: var(--cream); }

.site-header {
  background: var(--cream);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
}

.logo-link { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-link img { height: 42px; width: auto; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: var(--navy);
  color: var(--text-light);
  border: none;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1.5rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-dark);
  border-bottom-color: var(--accent);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 40, 51, 0.82) 0%, rgba(26, 58, 74, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
  max-width: 800px;
}

.hero h1 {
  color: var(--text-light);
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero p {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
}

.hero-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-card {
  background: rgba(248, 244, 239, 0.12);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  min-width: 140px;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.04);
  background: rgba(222, 175, 167, 0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.hero-card .material-icons { font-size: 2rem; color: var(--accent); display: block; margin-bottom: 0.5rem; }
.hero-card span { color: var(--text-light); font-weight: 600; font-size: 0.9rem; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--accent);
  color: var(--navy-deep);
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--accent);
  transition: background 0.25s, color 0.25s;
}

.btn:hover { background: transparent; color: var(--text-light); }

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--accent);
}

.btn-outline:hover { background: var(--accent); color: var(--navy-deep); }

.meander-divider {
  height: 6px;
  background: var(--meander);
  margin: 0;
}

section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--section-alt);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 { color: var(--accent); }

.section-dark p,
.section-dark li { color: var(--cream); }

.section-warm {
  background: var(--section-warm);
  color: var(--text-light);
}

.section-warm h2,
.section-warm h3 { color: var(--accent); }

.section-warm p,
.section-warm li { color: var(--cream); }

.section-light { background: var(--marble); }

.section-cream { background: var(--cream); }

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.section-title .subtitle {
  color: var(--accent-dark);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
}

.section-dark .subtitle { color: var(--accent); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.section-dark .card {
  background: rgba(15, 40, 51, 0.6);
  border-left-color: var(--gold);
}

.section-dark .card h3 {
  color: var(--accent);
}

.section-dark .card p {
  color: var(--cream);
}

.section-warm .card {
  background: var(--cream);
  color: var(--text);
}

.section-warm .card h3 {
  color: var(--navy);
}

.section-warm .card p {
  color: var(--text);
}

.grid-3 .card h3 {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card h3 { margin-bottom: 0.75rem; font-size: 1.35rem; }

.feature-list { list-style: none; }

.feature-list li {
  padding: 0.65rem 0 0.65rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(222, 175, 167, 0.3);
}

.feature-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
  top: 0.85rem;
}

.section-dark .feature-list li::before { color: var(--gold); }

.img-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.img-frame img { width: 100%; object-fit: cover; min-height: 220px; }

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.stat-box {
  text-align: center;
  padding: 1.25rem 1.75rem;
  background: var(--navy);
  color: var(--text-light);
  border-radius: 8px;
  min-width: 120px;
}

.stat-box strong {
  display: block;
  font-size: 1.75rem;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
}

.timeline {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}

.timeline-item {
  margin-bottom: 1.75rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--navy);
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.menu-table th,
.menu-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(222, 175, 167, 0.4);
}

.menu-table th {
  background: var(--navy);
  color: var(--text-light);
  font-family: 'Cormorant Garamond', serif;
}

.menu-table tr:nth-child(even) { background: rgba(222, 175, 167, 0.15); }

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--accent);
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--navy);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .material-icons { color: var(--accent); transition: transform 0.3s; }
.faq-item.open .faq-question .material-icons { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--cream);
}

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer-inner { padding: 1.25rem; color: var(--text); }

.events-list { list-style: none; }

.events-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--accent);
}

.event-date {
  background: var(--navy);
  color: var(--accent);
  text-align: center;
  padding: 0.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
}

.columns-text {
  column-count: 2;
  column-gap: 2rem;
}

.pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.pill {
  background: var(--navy);
  color: var(--text-light);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 2px solid var(--accent);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.checkbox-row input { width: auto; margin-top: 0.25rem; }

.map-wrap iframe { width: 100%; max-width: 100%; border-radius: 8px; }

.contact-info-block p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.site-footer {
  background: var(--navy-deep);
  color: var(--text-light);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 { color: var(--accent); margin-bottom: 1rem; font-size: 1.1rem; }

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(222, 175, 167, 0.3);
  font-size: 0.9rem;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.policy-content h1 { margin-bottom: 1.5rem; }
.policy-content h2 { margin: 2rem 0 1rem; font-size: 1.5rem; }
.policy-content p,
.policy-content li { margin-bottom: 1rem; }
.policy-content ul { padding-left: 1.5rem; }

.trust-box {
  background: rgba(26, 58, 74, 0.06);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}

.trust-box p { margin-bottom: 0.65rem; }

.footer-address {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-address a { color: var(--cream); }

.source-note {
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 1rem;
  color: var(--navy);
  opacity: 0.85;
}

.section-dark .source-note { color: var(--cream); opacity: 0.9; }

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.success-page .material-icons { font-size: 4rem; color: var(--accent); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  color: var(--text-light);
  padding: 1.25rem;
  z-index: 1000;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  display: none;
}

.cookie-banner.show { display: block; }

.cookie-inner { max-width: 1140px; margin: 0 auto; }

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-buttons button {
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--accent);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
}

.cookie-accept { background: var(--accent); color: var(--navy-deep); }
.cookie-reject { background: transparent; color: var(--text-light); }
.cookie-settings-btn { background: var(--navy); color: var(--text-light); }

.cookie-panel {
  display: none;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(222, 175, 167, 0.3);
}

.cookie-panel.show { display: block; }

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.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: #555;
  border-radius: 26px;
  transition: 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider { background: var(--accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }

.icon-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.icon-box {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1.25rem;
  background: rgba(26, 58, 74, 0.08);
  border-radius: 8px;
}

.icon-box .material-icons { font-size: 2.25rem; display: block; margin: 0 auto 0.5rem; }

blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  background: rgba(222, 175, 167, 0.2);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
}

.numbered-steps li {
  counter-increment: step;
  padding: 1rem 0 1rem 3rem;
  position: relative;
  border-bottom: 1px solid var(--accent);
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  background: var(--navy);
  color: var(--accent);
  border-radius: 50%;
  text-align: center;
  line-height: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .grid-2, .grid-3, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .columns-text { column-count: 1; }
  .hero { background-attachment: scroll; min-height: 60vh; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 3px solid var(--accent);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s 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 var(--marble); }
  .main-nav a { display: block; padding: 0.85rem 0; }

  .site-header { position: relative; }

  .events-list li { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 2.5rem 0; }
  .hero-card { min-width: 100%; }
  .cookie-buttons { flex-direction: column; }
  .cookie-buttons button { width: 100%; }
}
