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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2B2B2B;
  background-color: #FAF8F5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

header {
  position: sticky;
  top: 0;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 125, 114, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2B2B2B;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: #2B2B2B;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #C27A5A;
}

.nav-cta {
  background-color: #C27A5A;
  color: #FAF8F5;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background-color: #A86849;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(194, 122, 90, 0.25);
}

.menu-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: #2B2B2B;
}

.hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #FAF8F5 0%, #F5F1EB 100%);
}

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

.hero-text h1 {
  font-size: 4rem;
  color: #2B2B2B;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-text .subtitle {
  font-size: 1.25rem;
  color: #8B7D72;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(43, 43, 43, 0.12);
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #C27A5A;
  color: #FAF8F5;
}

.btn-primary:hover {
  background-color: #A86849;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 122, 90, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2B2B2B;
  border: 2px solid #8B7D72;
}

.btn-secondary:hover {
  background-color: #8B7D72;
  color: #FAF8F5;
  border-color: #8B7D72;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  color: #2B2B2B;
  margin-bottom: 16px;
}

.section-title p {
  font-size: 1.15rem;
  color: #8B7D72;
  max-width: 700px;
  margin: 0 auto;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(43, 43, 43, 0.08);
  transition: all 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(43, 43, 43, 0.15);
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-caption {
  padding: 20px;
  background-color: #fff;
  font-size: 0.95rem;
  color: #8B7D72;
  text-align: center;
}

.process {
  background-color: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.process-step {
  position: relative;
  padding: 32px;
  background-color: #FAF8F5;
  border-radius: 6px;
  border-left: 4px solid #C27A5A;
  transition: all 0.3s ease;
}

.process-step:hover {
  background-color: #F5F1EB;
  transform: translateX(4px);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(194, 122, 90, 0.3);
  position: absolute;
  top: 20px;
  right: 32px;
}

.process-step h3 {
  font-size: 1.5rem;
  color: #2B2B2B;
  margin-bottom: 12px;
}

.process-step p {
  color: #8B7D72;
  line-height: 1.7;
  margin-bottom: 0;
}

.process-visual {
  margin-top: 60px;
  text-align: center;
}

.process-visual img {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(43, 43, 43, 0.1);
}

.outcomes-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(43, 43, 43, 0.06);
  transition: all 0.3s ease;
}

.outcome-item:hover {
  box-shadow: 0 6px 24px rgba(43, 43, 43, 0.12);
  transform: translateY(-2px);
}

.outcome-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-color: rgba(194, 122, 90, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C27A5A;
  font-weight: 700;
}

.outcome-item p {
  margin: 0;
  color: #2B2B2B;
  font-size: 0.98rem;
  line-height: 1.6;
}

.instructor {
  background-color: #fff;
}

.instructor-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.instructor-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(43, 43, 43, 0.12);
}

.instructor-text h2 {
  margin-bottom: 24px;
}

.instructor-text p {
  font-size: 1.1rem;
  color: #8B7D72;
  line-height: 1.8;
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 50px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(43, 43, 43, 0.1);
  text-align: center;
  border: 2px solid #F5F1EB;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  border-color: #C27A5A;
  box-shadow: 0 16px 60px rgba(194, 122, 90, 0.2);
}

.pricing-card h3 {
  font-size: 2rem;
  margin-bottom: 32px;
  color: #2B2B2B;
}

.pricing-includes {
  list-style: none;
  margin: 32px 0 40px;
  text-align: left;
}

.pricing-includes li {
  padding: 12px 0;
  color: #8B7D72;
  border-bottom: 1px solid #F5F1EB;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-includes li:last-child {
  border-bottom: none;
}

.pricing-includes li::before {
  content: '✓';
  color: #C27A5A;
  font-weight: 700;
  font-size: 1.2rem;
}

.pricing-note {
  font-size: 1.1rem;
  color: #2B2B2B;
  margin: 24px 0;
  font-weight: 500;
}

.form-section {
  background: linear-gradient(135deg, #F5F1EB 0%, #FAF8F5 100%);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(43, 43, 43, 0.1);
}

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

.form-subtitle {
  text-align: center;
  color: #8B7D72;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2B2B2B;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E8E4DD;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #FAF8F5;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C27A5A;
  background-color: #fff;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: #8B7D72;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.form-checkbox a {
  color: #C27A5A;
  text-decoration: underline;
}

.form-error {
  color: #d9534f;
  font-size: 0.875rem;
  margin-top: 8px;
  display: none;
}

.form-error.visible {
  display: block;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background-color: #C27A5A;
  color: #FAF8F5;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #A86849;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(194, 122, 90, 0.3);
}

.submit-btn:disabled {
  background-color: #8B7D72;
  cursor: not-allowed;
  transform: none;
}

footer {
  background-color: #2B2B2B;
  color: #F5F1EB;
  padding: 60px 0 30px;
}

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

.footer-brand .logo {
  color: #FAF8F5;
  margin-bottom: 16px;
}

.footer-tagline {
  color: #8B7D72;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #FAF8F5;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #8B7D72;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #C27A5A;
}

.footer-company {
  font-size: 0.85rem;
  color: #8B7D72;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(139, 125, 114, 0.3);
  padding-top: 30px;
  text-align: center;
  color: #8B7D72;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FAF8F5;
  border-top: 2px solid #E8E4DD;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(43, 43, 43, 0.1);
  z-index: 2000;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

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

.cookie-text {
  flex: 1;
  color: #2B2B2B;
  font-size: 0.95rem;
}

.cookie-text a {
  color: #C27A5A;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #C27A5A;
  color: #FAF8F5;
}

.cookie-accept:hover {
  background-color: #A86849;
}

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

.success-content h1 {
  color: #C27A5A;
  margin-bottom: 24px;
}

.success-content p {
  font-size: 1.2rem;
  color: #8B7D72;
  margin-bottom: 40px;
}

.legal-page {
  padding: 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 16px;
}

.legal-date {
  color: #8B7D72;
  font-size: 0.95rem;
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 1.8rem;
  margin-top: 48px;
  margin-bottom: 20px;
}

.legal-page h3 {
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-page p,
.legal-page li {
  color: #8B7D72;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-page li {
  margin-bottom: 12px;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 60px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    background-color: #FAF8F5;
    flex-direction: column;
    gap: 0;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(139, 125, 114, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 125, 114, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text .subtitle {
    font-size: 1.1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .outcomes-list {
    grid-template-columns: 1fr;
  }

  .instructor-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .form-container {
    padding: 32px 24px;
  }
}
