@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');

:root {
  --sage: #B8CABA;
  --sage-dark: #8fa892;
  --marble: #f4f1eb;
  --marble-warm: #ebe6dc;
  --navy: #1a2332;
  --navy-soft: #2d3a4f;
  --gold: #c9a962;
  --text: #1a2332;
  --text-light: #f4f1eb;
  --section-alt: #2d3a4f;
  --section-sage: #9bb39e;
  --shadow: 0 8px 32px rgba(26, 35, 50, 0.12);
  --radius: 4px;
  --max: 1200px;
  --header-h: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--marble);
  line-height: 1.65;
  min-width: 320px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--navy-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover { color: var(--gold); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--navy);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  text-align: center;
}

.disclaimer-bar p { margin: 0; }

.disclaimer-bar a {
  color: var(--sage);
  text-decoration: underline;
}

.trust-notice {
  background: var(--marble);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.trust-notice h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
}

.footer-trust {
  border-top: 1px solid var(--navy-soft);
  padding: 1rem 0;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(244, 241, 235, 0.9);
}

.footer-trust a { color: var(--sage); }

.footer-compliance {
  border-top: 1px solid var(--navy-soft);
  padding: 1rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(244, 241, 235, 0.85);
}

.footer-compliance a { color: var(--sage); }

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.transparency-box {
  background: rgba(184, 202, 186, 0.35);
  border-left: 4px solid var(--navy);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: var(--radius);
}

.transparency-box p:last-child { margin-bottom: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--marble);
  border-bottom: 2px solid var(--sage);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--navy);
}

.logo-link img { height: 40px; width: auto; }

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1rem;
  max-width: 140px;
  line-height: 1.1;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-toggle i { 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;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--sage-dark);
  color: var(--navy-soft);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.82) 0%, rgba(45, 58, 79, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 800px;
}

.hero-content h1,
.hero-content p {
  color: var(--text-light);
}

.hero-content p { font-size: 1.15rem; margin-bottom: 1.5rem; }

.hero-ornament {
  color: var(--sage);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--sage);
  color: var(--navy);
  border-color: var(--sage-dark);
}

.btn-primary:hover {
  background: var(--sage-dark);
  color: var(--navy);
}

.btn-outline {
  background: transparent;

  border-color: var(--sage);
}

.btn-outline:hover {
  background: var(--sage);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: var(--text-light);
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--navy-soft);
}

section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--section-alt);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 { color: var(--sage); }



.section-sage {
  background: var(--section-sage);
  color: var(--navy);
}

.section-marble {
  background: var(--marble-warm);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-header .icon-wrap {
  color: var(--navy);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.section-dark .section-header .icon-wrap { color: var(--sage); }

.greek-border {
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--sage);
  padding-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.chessboard-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.chessboard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.chessboard-img img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
}

.chessboard-img {
  display: flex;
  justify-content: flex-start;
}

.chessboard-row-reverse .chessboard-img {
  order: 2;
  justify-content: flex-end;
}

.chessboard-row-reverse .chessboard-text {
  order: 1;
}

.chessboard-text p:last-child {
  margin-bottom: 0;
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--marble);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--sage);
}

.section-dark .card {
  background: var(--navy);
  color: var(--text-light);
}

.card i {
  font-size: 2rem;
  color: var(--navy-soft);
  margin-bottom: 0.75rem;
}

.section-dark .card i { color: var(--sage); }

.media-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.media-block.reverse { direction: rtl; }
.media-block.reverse > * { direction: ltr; }

.media-block img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
}

.styled-list {
  list-style: none;
  padding: 0;
}

.styled-list li {
  padding: 0.75rem 0 0.75rem 2.5rem;
  position: relative;
  border-bottom: 1px solid rgba(184, 202, 186, 0.4);
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 12px;
  height: 12px;
  background: var(--sage);
  transform: rotate(45deg);
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
}

.numbered-steps li {
  counter-increment: step;
  padding: 1rem 1rem 1rem 4rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  position: relative;
}

.section-marble .numbered-steps li,
.section-sage .numbered-steps li {
  background: var(--marble);
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--sage);
  color: var(--navy);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
}

.quote-block {
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  background: rgba(201, 169, 98, 0.1);
  margin: 1.5rem 0;
}

.breathing-widget {
  text-align: center;
  padding: 2rem;
  background: var(--navy);
  border-radius: var(--radius);
  max-width: 400px;
  margin: 2rem auto;
}

.breath-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid var(--sage);
  margin: 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 4s ease-in-out, border-color 0.3s;
}

.breath-circle.inhale { transform: scale(1.35); border-color: var(--gold); }
.breath-circle.hold { transform: scale(1.35); border-color: var(--sage-dark); }
.breath-circle.exhale { transform: scale(0.85); border-color: var(--sage); }

.breath-controls .btn { margin: 0.25rem; }

.breathing-widget .btn-outline {
  color: var(--text-light);
  border-color: var(--sage);
}

.breathing-widget .btn-outline:hover {
  background: var(--sage);
  color: var(--navy);
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--sage-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--marble);
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy);
}

.section-dark .faq-question { background: var(--navy-soft); color: var(--text-light); }

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  max-height: 600px;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.events-table th,
.events-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(184, 202, 186, 0.5);
}

.events-table th {
  background: var(--navy);
  color: var(--text-light);
  font-family: 'Cormorant Garamond', serif;
}

.events-table tr:nth-child(even) { background: rgba(184, 202, 186, 0.2); }

.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--sage-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--navy);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.checkbox-group {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.checkbox-group input { width: auto; margin-top: 0.25rem; }

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--gold);
}

.map-wrap iframe {
  width: 100%;
  max-width: 100%;
  height: 350px;
  display: block;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  padding: 0.5rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-details i {
  color: var(--navy-soft);
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-dark .contact-details i { color: var(--sage); }

.site-footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer a { color: var(--sage); }

.site-footer h4 {
  color: var(--sage);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.35rem; }

.footer-bottom {
  border-top: 1px solid var(--navy-soft);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--text-light);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.cookie-banner p { font-size: 0.9rem; margin-bottom: 1rem; }

.cookie-banner .btn-outline {
  color: var(--text-light);
  border-color: var(--sage);
}

.cookie-banner .btn-outline:hover {
  background: var(--sage);
  color: var(--navy);
}

.cookie-banner a { color: var(--sage); }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--navy-soft);
}

.cookie-settings.open { display: block; }

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.7;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.policy-content h2 { margin-top: 2rem; }
.policy-content ul { margin: 1rem 0 1rem 1.5rem; }

.policy-content code {
  font-size: 0.9em;
  background: rgba(26, 35, 50, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 2px;
}

.policy-content .events-table {
  font-size: 0.9rem;
}

.policy-content .events-table td:first-child {
  font-weight: 600;
  width: 38%;
}

.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.thank-you-page i {
  font-size: 4rem;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: var(--navy);
  color: var(--sage);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
}

.section-sage .tag {
  background: var(--navy);
}

.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--text-light);
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
}

.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 50, 0.78);
}

.page-hero .hero-content { min-height: auto; }

@media (max-width: 900px) {
  .columns-2,
  .columns-3,
  .media-block,
  .footer-grid,
  .chessboard-row {
    grid-template-columns: 1fr;
  }

  .chessboard-row-reverse .chessboard-img,
  .chessboard-row-reverse .chessboard-text {
    order: unset;
  }

  .media-block.reverse { direction: ltr; }

  .hero { background-attachment: scroll; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--marble);
    border-bottom: 2px solid var(--sage);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.open { max-height: 80vh; overflow-y: auto; }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--marble-warm);
  }

  section { padding: 2.5rem 0; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 320px) {
  .container { padding: 0 0.75rem; }
  .header-inner { padding: 0 0.75rem; }
  .logo-text { font-size: 0.85rem; max-width: 110px; }
  .btn { padding: 0.6rem 1rem; font-size: 0.9rem; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; text-align: center; }
}
