:root {
  --brand-main: #0F766E;
  --ui-base-dark: #1F2937;
  --tone-highlight: #F59E0B;
  --surface-light: #F9FAFB;
  --text-muted: #4B5563;
  --gradient-primary: linear-gradient(135deg, #0F766E 0%, #047857 100%);
  --font-accent: 'Playfair Display', serif;
  --font-base: 'Inter', sans-serif;
}

html {
  font-family: var(--font-base);
  color: var(--ui-base-dark);
  scroll-behavior: smooth;
}

body {
  background-color: var(--surface-light);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
}

/* Custom Semantic Containers */
.site-boundary {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Nav Styles */
.top-nav-veil {
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand-mark {
  color: var(--brand-main);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-link-item {
  color: var(--ui-base-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-link-item:hover {
  color: var(--brand-main);
}

/* Action Buttons */
.btn-action-primary {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-action-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(15, 118, 110, 0.3);
}

.btn-action-outline {
  display: inline-block;
  color: var(--brand-main);
  border: 2px solid var(--brand-main);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-action-outline:hover {
  background-color: var(--brand-main);
  color: #ffffff;
}

/* Section specific wrappers */
.motion-intro-wrap {
  padding: 5rem 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.motion-intro-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 41, 55, 0.7);
  z-index: 1;
}

.intro-content-core {
  position: relative;
  z-index: 2;
}

.edu-grid-matrix {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .edu-grid-matrix {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-block-layer {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-top: 4px solid var(--brand-main);
  transition: transform 0.3s ease;
}

.info-block-layer:hover {
  transform: translateY(-5px);
}

/* Reserve Page Specifics */
.booking-form-area {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.input-field-base {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  transition: border-color 0.3s;
}

.input-field-base:focus {
  outline: none;
  border-color: var(--brand-main);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

/* Numbered lists for logic */
.numbered-habit-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.numbered-habit-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.num-indicator {
  background-color: var(--tone-highlight);
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* Footer & Cookie */
.bottom-info-wrap {
  background-color: var(--ui-base-dark);
  color: #D1D5DB;
  padding: 3rem 0;
  margin-top: auto;
}

.cookie-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--ui-base-dark);
  color: #ffffff;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cookie-consent-bar {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cookie-btn-accept {
  background-color: var(--brand-main);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn-decline {
  background-color: #4B5563;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn-accept:hover, .cookie-btn-decline:hover {
  opacity: 0.8;
}

/* Images */
.image-rounded-soft {
  border-radius: 1rem;
  object-fit: cover;
  width: 100%;
  height: auto;
}