@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
  --color-bg: #FAF7F2;
  --color-text: #2C1810;
  --color-accent: #7A8C6E;
  --color-wheat: #E8D5B0;
  --color-wheat-dark: #C9A96E;
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle noise texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 9999;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--color-text);
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.btn:hover {
  background-color: #637359;
  transform: translateY(-2px);
  opacity: 1;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.125rem;
}

.btn-secondary {
  background-color: var(--color-wheat);
  color: var(--color-text);
}

.btn-secondary:hover {
  background-color: var(--color-wheat-dark);
}

/* Navigation */
.navbar {
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #4A3A34;
}

.hero-image {
  border-radius: 200px 200px 8px 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.08);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* Generic Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: #4A3A34;
}

/* Value Prop */
.value-prop {
  background-color: #F4EEDF;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.benefit-card {
  padding: 40px;
  background-color: var(--color-bg);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.benefit-icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* Course Format */
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.format-image {
  border-radius: 8px;
  overflow: hidden;
}

.format-list {
  list-style: none;
}

.format-list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  font-size: 1.125rem;
}

.format-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

/* Program */
.program {
  background-color: var(--color-text);
  color: var(--color-bg);
}

.program h2 {
  color: var(--color-bg);
}

.program p {
  color: var(--color-wheat);
}

.modules-list {
  max-width: 800px;
  margin: 0 auto;
}

.module-item {
  border-bottom: 1px solid rgba(232, 213, 176, 0.2);
  padding: 30px 0;
}

.module-item:last-child {
  border-bottom: none;
}

.module-title {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}

.module-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-wheat);
  margin-right: 20px;
  min-width: 40px;
}

.module-item h3 {
  font-size: 1.75rem;
  color: var(--color-bg);
  margin: 0;
}

.module-item p {
  padding-left: 60px;
  margin: 0;
  font-size: 1.125rem;
}

/* Results Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease;
}

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

.gallery-large {
  grid-column: span 2;
}

.gallery-large img {
  aspect-ratio: 21/9;
}

/* Audience Fit */
.audience {
  background-color: #F4EEDF;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.audience-box h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.audience-list {
  list-style: none;
}

.audience-list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  font-size: 1.125rem;
}

.audience-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.audience-not li::before {
  content: "×";
  color: #A96256;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(44, 24, 16, 0.1);
  padding: 24px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1.5rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  color: #4A3A34;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Lead Form Section */
.lead-section {
  background-color: var(--color-wheat);
  padding: 100px 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-bg);
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 10px;
}

.form-container p {
  text-align: center;
  margin-bottom: 40px;
  color: #4A3A34;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D6CEBE;
  background-color: #FAF7F2;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-submit {
  width: 100%;
  margin-top: 16px;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: #7A7061;
  text-align: center;
  margin-top: 16px;
}

.form-disclaimer a {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: var(--color-text);
  color: var(--color-bg);
  padding: 60px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-wheat);
}

.footer-info p {
  color: #A39B8F;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-links a {
  color: #A39B8F;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-wheat);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #A39B8F;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-text);
  color: var(--color-bg);
  padding: 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  font-size: 0.9rem;
  color: #A39B8F;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-actions .btn-secondary {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.cookie-actions a {
  color: var(--color-wheat);
  text-decoration: underline;
  padding: 10px;
  font-size: 0.9rem;
}

/* Legal Pages */
.legal-header {
  padding: 120px 0 60px;
  background-color: #F4EEDF;
  text-align: center;
}

.legal-header h1 {
  font-size: 3rem;
  margin-bottom: 0;
}

.legal-content {
  padding: 60px 0 100px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin: 40px 0 20px;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin: 24px 0 16px;
}

.legal-content p {
  margin-bottom: 16px;
  color: #4A3A34;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  color: #4A3A34;
}

.legal-content li {
  margin-bottom: 8px;
}

/* Success Page */
.success-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.success-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.success-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #4A3A34;
}

/* Scroll Fade In */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .format-grid, .audience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-image {
    order: -1;
    border-radius: 100px 100px 8px 8px;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .module-item {
    padding: 20px 0;
  }
  
  .module-item p {
    padding-left: 0;
    margin-top: 10px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-links {
    align-items: flex-start;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .form-container {
    padding: 40px 20px;
  }
}
