* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: #3a2a1f;
  background-color: #faf8f3;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant', serif;
  margin: 0;
  font-weight: 600;
  line-height: 1.35;
}

p {
  margin: 0 0 1.25rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.row > * {
  padding: 0 1rem;
}

.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }

.g-4 {
  margin: 0 -0.75rem;
}

.g-4 > * {
  padding: 0 0.75rem;
  margin-bottom: 1.5rem;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2rem !important; }

.offset-lg-1 {
  margin-left: 0;
}

:root {
  --primary: #d97757;
  --primary-dark: #c4613f;
  --secondary: #2d5f4f;
  --text: #3a2a1f;
  --text-light: #6b5d52;
  --bg-light: #faf8f3;
  --bg-cream: #f5f1e8;
  --white: #ffffff;
}

.navbar-floating {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(217, 119, 87, 0.1);
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo img {
  display: block;
  transition: transform 0.3s ease;
}

.navbar-logo:hover img {
  transform: scale(1.05);
}

.navbar-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link-organic {
  font-family: 'Raleway', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link-organic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link-organic:hover {
  color: var(--primary);
}

.nav-link-organic:hover::after {
  width: 100%;
}

.navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggler-line {
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggler.active .navbar-toggler-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggler.active .navbar-toggler-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .navbar-toggler-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-organic {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-content-organic {
  padding: 3rem 0;
}

.hero-title-flow {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle-soft {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 620px;
  font-weight: 300;
}

.hero-decoration {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.hero-decoration svg {
  width: 100%;
  height: auto;
  display: block;
}

.btn-organic {
  display: inline-block;
  padding: 1.125rem 2.75rem;
  font-family: 'Raleway', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  text-align: center;
}

.btn-organic-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 24px rgba(217, 119, 87, 0.25);
}

.btn-organic-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(217, 119, 87, 0.35);
}

.btn-organic-lg {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.section-breathing {
  position: relative;
  overflow: hidden;
}

.card-soft-elevated {
  background: white;
  padding: 3.5rem 3rem;
  border-radius: 32px;
  box-shadow: 0 16px 48px rgba(58, 42, 31, 0.08);
  transition: all 0.4s ease;
}

.card-soft-elevated:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(58, 42, 31, 0.12);
}

.heading-organic {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.heading-organic-light {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: white;
  line-height: 1.3;
}

.text-flow {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 1.0625rem;
}

.text-flow-light {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.85;
}

.feature-card-organic {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 28px;
  box-shadow: 0 12px 36px rgba(58, 42, 31, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card-organic.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-card-organic:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(58, 42, 31, 0.12);
}

.feature-icon-organic {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(217, 119, 87, 0.12) 0%, rgba(217, 119, 87, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--primary);
  font-size: 1.75rem;
}

.feature-heading-organic {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.feature-text-soft {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.checklist-organic {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.check-item-flow {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.check-item-flow.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.check-icon-soft {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(217, 119, 87, 0.25);
}

.check-title-organic {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.check-text-soft {
  color: var(--text-light);
  font-size: 0.9875rem;
  line-height: 1.7;
  margin: 0;
}

.content-organic-wrapper {
  padding: 1rem 0;
}

.image-organic-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(58, 42, 31, 0.15);
  transform: rotate(0deg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-organic-frame.animate-in {
  opacity: 1;
}

.image-organic-frame::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(217, 119, 87, 0.3) 0%, rgba(45, 95, 79, 0.3) 100%);
  border-radius: 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.image-organic-frame:hover::before {
  opacity: 1;
}

.image-organic-frame:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 28px 72px rgba(58, 42, 31, 0.2);
}

.img-organic {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-organic-frame:hover .img-organic {
  transform: scale(1.05);
}

.section-gradient-organic {
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, #1e4238 100%);
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.section-gradient-organic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.section-decoration-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.section-decoration-bottom svg {
  width: 100%;
  height: auto;
  display: block;
}

.benefits-list-organic {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-item-flow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
}

.benefit-item-flow i {
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.section-overlay-hero {
  position: relative;
  overflow: hidden;
}

.benefits-list-light {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-item-light {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.125rem;
  color: white;
  line-height: 1.6;
}

.benefit-item-light i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.btn-organic-light {
  background: white;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-organic-light:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.experience-list-organic {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.experience-item-organic {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.experience-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Cormorant', serif;
  box-shadow: 0 8px 20px rgba(217, 119, 87, 0.25);
}

.experience-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.625rem;
  font-family: 'Cormorant', serif;
}

.experience-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.gallery-grid-organic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.gallery-item-organic {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(58, 42, 31, 0.1);
}

.gallery-item-organic:nth-child(1) {
  grid-column: span 7;
  min-height: 380px;
}

.gallery-item-organic:nth-child(2) {
  grid-column: span 5;
  min-height: 280px;
}

.gallery-item-organic:nth-child(3) {
  grid-column: span 5;
  min-height: 280px;
}

.gallery-item-organic:nth-child(4) {
  grid-column: span 7;
  min-height: 280px;
}

.gallery-item-organic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-organic:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(58, 42, 31, 0.85) 0%, transparent 100%);
  padding: 2rem 1.75rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item-organic:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h5 {
  color: white;
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0;
  font-family: 'Cormorant', serif;
}

.form-organic-wrapper {
  background: white;
  padding: 2.75rem 2.5rem;
  border-radius: 32px;
  box-shadow: 0 16px 48px rgba(58, 42, 31, 0.08);
}

.form-label-organic {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.625rem;
  letter-spacing: 0.3px;
}

.form-input-organic,
.form-textarea-organic {
  width: 100%;
  padding: 1rem 1.375rem;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 16px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input-organic:focus,
.form-textarea-organic:focus {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(217, 119, 87, 0.12);
}

.form-textarea-organic {
  resize: vertical;
  min-height: 120px;
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 420px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(58, 42, 31, 0.2);
  z-index: 10000;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  padding: 1.75rem;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.cookie-header h6 {
  color: var(--text);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

.fw-bold {
  font-weight: 600 !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.cookie-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #8a7a6e;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  width: 28px;
  height: 28px;
  transition: color 0.3s ease;
}

.cookie-close:hover {
  color: var(--text);
}

.cookie-text {
  color: #6b5d52;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  cursor: pointer;
  accent-color: var(--primary);
}

.cookie-option input[type="checkbox"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.btn-cookie {
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Raleway', sans-serif;
}

.btn-cookie-accept {
  background-color: var(--primary);
  color: white;
}

.btn-cookie-accept:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-cookie-selected {
  background-color: var(--secondary);
  color: white;
}

.btn-cookie-selected:hover {
  background-color: #1e4238;
  transform: translateY(-1px);
}

.btn-cookie-reject {
  background-color: transparent;
  color: var(--text);
  border: 1px solid #d4c5b5;
}

.btn-cookie-reject:hover {
  background-color: #f5f1e8;
}

.footer-organic {
  position: relative;
  background: #3a2a1f;
  color: rgba(255, 255, 255, 0.85);
}

.footer-wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.footer-wave-top svg {
  width: 100%;
  height: auto;
  display: block;
}

.footer-content {
  padding: 4.5rem 0 2.5rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-text-soft {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  font-size: 0.9875rem;
}

.social-organic {
  display: flex;
  gap: 1rem;
}

.social-link-organic {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.social-link-organic:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-heading-organic {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-nav-organic {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-link-organic {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9875rem;
  transition: all 0.3s ease;
}

.footer-link-organic:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.footer-contact-organic {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9875rem;
  line-height: 1.7;
  margin: 0;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  margin: 0;
}

.footer-link-small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-link-small:hover {
  color: var(--primary);
}

.footer-divider {
  margin: 0 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
  .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10 {
    width: 100%;
  }
  
  .offset-lg-1 {
    margin-left: 0;
  }
  
  .mb-lg-0 {
    margin-bottom: 0;
  }
  
  .text-md-start, .text-md-end {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-8, .col-md-10 {
    width: 100%;
  }
  
  .navbar-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(12px);
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 8px 24px rgba(58, 42, 31, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .navbar-menu.active {
    transform: translateX(0);
  }
  
  .navbar-toggler {
    display: flex;
  }
  
  .hero-organic {
    min-height: 80vh;
  }
  
  .hero-title-flow {
    font-size: 2.25rem;
  }
  
  .hero-subtitle-soft {
    font-size: 1.0625rem;
  }
  
  .btn-organic {
    padding: 1rem 2.25rem;
  }
  
  .card-soft-elevated {
    padding: 2.5rem 1.75rem;
    border-radius: 24px;
  }
  
  .heading-organic {
    font-size: 1.875rem;
  }
  
  .feature-card-organic {
    padding: 2rem 1.5rem;
    margin-bottom: 1.25rem;
  }
  
  .form-organic-wrapper {
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }
  
  .footer-content {
    padding: 3.5rem 0 2rem;
  }
  
  .cookie-banner {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
  
  .cookie-content {
    padding: 1.25rem;
  }
  
  .section-breathing {
    padding: 3.5rem 0 !important;
  }
  
  .section-gradient-organic {
    padding: 4rem 0 3.5rem !important;
  }
  
  .gallery-grid-organic {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item-organic:nth-child(1),
  .gallery-item-organic:nth-child(2),
  .gallery-item-organic:nth-child(3),
  .gallery-item-organic:nth-child(4) {
    grid-column: span 1;
    min-height: 240px;
  }
  
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(58, 42, 31, 0.75) 0%, transparent 100%);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 768px) {
  .col-md-1  { flex: 0 0 auto; width: 8.333333%;  }
  .col-md-2  { flex: 0 0 auto; width: 16.666667%; }
  .col-md-3  { flex: 0 0 auto; width: 25%;        }
  .col-md-4  { flex: 0 0 auto; width: 33.333333%; }
  .col-md-5  { flex: 0 0 auto; width: 41.666667%; }
  .col-md-6  { flex: 0 0 auto; width: 50%;        }
  .col-md-7  { flex: 0 0 auto; width: 58.333333%; }
  .col-md-8  { flex: 0 0 auto; width: 66.666667%; }
  .col-md-9  { flex: 0 0 auto; width: 75%;        }
  .col-md-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-md-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-md-12 { flex: 0 0 auto; width: 100%;       }
}

/* ==========================================
   ADDITIONAL STYLES FOR NEW PAGES
   Add these styles to your main harmony.css
   ========================================== */

/* Thank You Page Styles */
.thankyou-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
  padding: 2rem 1rem;
}

.thankyou-content {
  text-align: center;
  max-width: 520px;
  background: white;
  padding: 3.5rem 2.5rem;
  border-radius: 32px;
  box-shadow: 0 16px 48px rgba(58, 42, 31, 0.08);
}

.thankyou-icon {
  margin-bottom: 2rem;
  display: inline-block;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-family: 'Cormorant', serif;
}

.thankyou-text {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Page Hero Styles */
.page-hero-simple {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
}

.page-hero-image {
  padding: 7rem 0 5rem;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.page-title-organic {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: 'Cormorant', serif;
  line-height: 1.2;
}

.page-title-light {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  font-family: 'Cormorant', serif;
  line-height: 1.2;
}

.page-subtitle-organic {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.page-subtitle-light {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Contact Info Styles */
.contact-info-organic {
  padding: 1rem 0;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-detail-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(217, 119, 87, 0.12) 0%, rgba(217, 119, 87, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

.contact-detail-item h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: 'Cormorant', serif;
}

.contact-detail-item p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Class Card Styles */
.class-card-organic {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(58, 42, 31, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.class-card-organic:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(58, 42, 31, 0.14);
}

.class-image-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.class-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.class-card-organic:hover .class-image-wrapper img {
  transform: scale(1.08);
}

.class-level {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.class-content {
  padding: 2rem 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.class-title {
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  font-family: 'Cormorant', serif;
}

.class-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.class-details {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-light);
}

.class-details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.class-details i {
  color: var(--primary);
  font-size: 1.125rem;
}

/* Pricing List Styles */
.pricing-list-organic {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.pricing-item {
  padding: 1.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(58, 42, 31, 0.06);
  transition: all 0.3s ease;
}

.pricing-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(58, 42, 31, 0.1);
}

.pricing-item h5 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: 'Cormorant', serif;
}

.pricing-item p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Legal Content Styles */
.legal-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
}

.legal-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-family: 'Cormorant', serif;
}

.legal-content h3:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.legal-content p:last-child {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .thankyou-content {
    padding: 2.5rem 2rem;
    border-radius: 24px;
  }
  
  .thankyou-title {
    font-size: 2rem;
  }
  
  .thankyou-text {
    font-size: 1rem;
  }
  
  .page-hero-simple {
    padding: 4rem 0 3rem;
  }
  
  .page-hero-image {
    padding: 5rem 0 3.5rem;
    min-height: 360px;
  }
  
  .page-title-organic,
  .page-title-light {
    font-size: 2.25rem;
  }
  
  .page-subtitle-organic,
  .page-subtitle-light {
    font-size: 1.0625rem;
  }
  
  .contact-detail-item {
    margin-bottom: 2rem;
  }
  
  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .class-image-wrapper {
    height: 220px;
  }
  
  .class-content {
    padding: 1.75rem 1.5rem;
  }
  
  .class-title {
    font-size: 1.5rem;
  }
  
  .class-details {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .legal-content {
    font-size: 1rem;
  }
  
  .legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}

@media (max-width: 991px) {
  .contact-info-organic {
    margin-bottom: 3rem;
  }
}

.logo {
  height: 50px;
}

@media (min-width: 992px) {
  .col-lg-1  { flex: 0 0 auto; width: 8.333333%;  }
  .col-lg-2  { flex: 0 0 auto; width: 16.666667%; }
  .col-lg-3  { flex: 0 0 auto; width: 25%;        }
  .col-lg-4  { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-5  { flex: 0 0 auto; width: 41.666667%; }
  .col-lg-6  { flex: 0 0 auto; width: 50%;        }
  .col-lg-7  { flex: 0 0 auto; width: 58.333333%; }
  .col-lg-8  { flex: 0 0 auto; width: 66.666667%; }
  .col-lg-9  { flex: 0 0 auto; width: 75%;        }
  .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-lg-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%;       }
}

/* Membership Packages Organic Section */
.membership-organic-section {
  position: relative;
}

.membership-organic-decoration {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.membership-organic-decoration svg {
  width: 100%;
  height: 100%;
  animation: float-gentle 20s ease-in-out infinite;
}

@keyframes float-gentle {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -20px) rotate(5deg); }
  66% { transform: translate(-20px, 30px) rotate(-5deg); }
}

.membership-organic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.membership-package-organic {
  background: linear-gradient(135deg, #ffffff 0%, #faf8f3 100%);
  border-radius: 32px;
  padding: 2.75rem 2.25rem;
  box-shadow: 0 12px 40px rgba(58, 42, 31, 0.08);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.membership-package-organic:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(58, 42, 31, 0.14);
}

.foundation-package:hover {
  border-color: rgba(217, 119, 87, 0.3);
}

.flow-package:hover {
  border-color: rgba(45, 95, 79, 0.3);
}

.freedom-package:hover {
  border-color: rgba(217, 119, 87, 0.3);
}

.featured-organic {
  background: linear-gradient(135deg, #ffffff 0%, #f5f1e8 100%);
  border: 2px solid rgba(45, 95, 79, 0.2);
  transform: scale(1.05);
  box-shadow: 0 20px 56px rgba(45, 95, 79, 0.15);
}

.featured-organic:hover {
  transform: scale(1.05) translateY(-12px);
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2d5f4f 0%, #234a3d 100%);
  color: white;
  padding: 0.625rem 1.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(45, 95, 79, 0.3);
  font-family: 'Raleway', sans-serif;
}

.package-nature-icon {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, rgba(217, 119, 87, 0.1) 0%, rgba(217, 119, 87, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.featured-organic .package-nature-icon {
  background: linear-gradient(135deg, rgba(45, 95, 79, 0.15) 0%, rgba(45, 95, 79, 0.08) 100%);
  color: var(--secondary);
}

.membership-package-organic:hover .package-nature-icon {
  transform: scale(1.1) rotate(5deg);
}

.package-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.package-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: 'Cormorant', serif;
  line-height: 1.2;
}

.package-essence {
  font-size: 0.9375rem;
  color: var(--primary);
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.5px;
  margin: 0;
}

.featured-organic .package-essence {
  color: var(--secondary);
}

.package-price-flow {
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-symbol {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  margin-right: 0.25rem;
}

.price-value {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Cormorant', serif;
}

.featured-organic .price-value {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a3d31 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-cadence {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-left: 0.25rem;
  font-weight: 400;
}

.package-intro {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.benefits-organic-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  flex-grow: 1;
}

.benefits-organic-list li {
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(217, 119, 87, 0.1);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  line-height: 1.6;
  font-weight: 400;
}

.benefits-organic-list li:last-child {
  border-bottom: none;
}

.benefits-organic-list li i {
  color: var(--primary);
  font-size: 1.375rem;
  margin-right: 1rem;
  flex-shrink: 0;
  font-weight: bold;
}

.featured-organic .benefits-organic-list li i {
  color: var(--secondary);
}

.btn-package {
  display: block;
  width: 100%;
  padding: 1.125rem 2rem;
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  margin-top: auto;
}

.btn-package:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 87, 0.3);
}

.btn-package-featured {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.btn-package-featured:hover {
  background: #234a3d;
  border-color: #234a3d;
  color: white;
  box-shadow: 0 8px 24px rgba(45, 95, 79, 0.35);
}

.membership-footer-organic {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding-top: 2rem;
}

@media (max-width: 991px) {
  .membership-organic-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .featured-organic {
    transform: scale(1);
  }
  
  .featured-organic:hover {
    transform: translateY(-12px);
  }
  
  .membership-organic-decoration {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
  }
}

@media (max-width: 767px) {
  .membership-package-organic {
    padding: 2.25rem 1.75rem;
  }
  
  .package-nature-icon {
    width: 72px;
    height: 72px;
  }
  
  .package-title {
    font-size: 1.75rem;
  }
  
  .price-value {
    font-size: 3rem;
  }
  
  .package-intro {
    font-size: 0.9375rem;
  }
  
  .benefits-organic-list li {
    font-size: 0.9375rem;
  }
  
  .membership-organic-decoration {
    display: none;
  }
}