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

:root {
  --sand:    #f5ede0;
  --cream:   #faf6f0;
  --warm-bg: #f9f4ee;
  --linen:   #ede3d3;
  --rope:    #c4a882;
  --earth:   #8b6c4f;
  --bark:    #5c4433;
  --dark:    #2e1f14;
  --sage:    #7d8c6e;
  --text:    #3a2a1e;
  --text-2:  #6b5040;
  --white:   #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --radius:  8px;
  --radius-l: 16px;
  --shadow:  0 2px 16px rgba(60, 40, 20, 0.08);
  --shadow-l: 0 8px 40px rgba(60, 40, 20, 0.13);
  --max-w: 1180px;
  --header-h: 68px;
  --section-gap: 96px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-gap) 0; }

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--bark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 580px;
  line-height: 1.7;
}
.section-header.centered .section-sub { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--earth);
  color: var(--white);
  border-color: var(--earth);
}
.btn-primary:hover { background: var(--bark); border-color: var(--bark); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--bark);
  border-color: var(--linen);
}
.btn-ghost:hover { background: var(--linen); }

.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-full { width: 100%; }

.logo {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--bark);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-knot { color: var(--rope); font-size: 1.1em; }
.logo-light { color: var(--sand); }
.logo-light .logo-knot { color: var(--linen); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(60, 40, 20, 0.08); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 0.9375rem;
  color: var(--text-2);
  transition: color 0.15s;
}
.nav a:hover { color: var(--bark); }
.nav .nav-cta {
  background: var(--earth);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background 0.15s;
}
.nav .nav-cta:hover { background: var(--bark); color: var(--white); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 28, 14, 0.72) 0%,
    rgba(44, 28, 14, 0.45) 60%,
    rgba(44, 28, 14, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  max-width: 720px;
  color: var(--white);
  padding-bottom: 64px;
}

.hero-label {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.for-whom { background: var(--sand); }

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.for-whom-item {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 28px 24px;
  border: 1px solid var(--linen);
  transition: box-shadow 0.2s;
}
.for-whom-item:hover { box-shadow: var(--shadow); }

.fw-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
}
.for-whom-item p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
}

.benefits { background: var(--cream); }

.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benefits-desc {
  font-size: 1.0625rem;
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.7;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.55;
}
.benefits-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--rope);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M16.7 5.3a1 1 0 0 1 0 1.4l-8 8a1 1 0 0 1-1.4 0l-4-4a1 1 0 0 1 1.4-1.4L8 12.59l7.3-7.3a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.benefits-img-wrap {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
}
.benefits-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.learn { background: var(--warm-bg); }

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

.learn-card {
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius-l);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.learn-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.learn-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--linen);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.learn-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 10px;
}

.learn-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

.portfolio { background: var(--sand); }

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

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

.portfolio-img-wrap {
  border-radius: var(--radius-l);
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.portfolio-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.portfolio-item:hover .portfolio-img-wrap img { transform: scale(1.04); }

.portfolio-item p {
  font-size: 0.9375rem;
  color: var(--text-2);
  font-weight: 500;
}

.process { background: var(--cream); }

.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.process-img-wrap {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  order: -1;
}
.process-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.process-steps { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }

.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--earth);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 2px;
}

.step-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 5px;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

.cta-strip {
  background: var(--bark);
  padding: 56px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 8px;
}
.cta-strip-text p {
  color: rgba(245, 237, 224, 0.75);
  font-size: 1rem;
}
.cta-strip .btn-primary {
  background: var(--rope);
  border-color: var(--rope);
  flex-shrink: 0;
}
.cta-strip .btn-primary:hover { background: var(--sand); border-color: var(--sand); color: var(--bark); }

.instructor { background: var(--warm-bg); }

.instructor-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: start;
}

.instructor-label {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rope);
  font-weight: 500;
  margin-bottom: 10px;
}

.instructor-name {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 20px;
}

.instructor-text p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.instructor-text p:last-child { margin-bottom: 0; }

.instructor-note {
  font-size: 0.8125rem !important;
  color: var(--rope) !important;
  margin-top: 20px !important;
  padding-top: 16px;
  border-top: 1px solid var(--linen);
}

.instructor-img-wrap { flex-shrink: 0; }

.instructor-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-l);
  border: 4px solid var(--linen);
}

.reviews { background: var(--sand); }

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

.review-card {
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius-l);
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: var(--shadow); }

.review-stars {
  color: var(--rope);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rope);
}

.faq { background: var(--cream); }

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--linen);
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--linen); }

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bark);
  cursor: pointer;
  user-select: none;
  transition: color 0.15s;
  gap: 16px;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--rope);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item::-webkit-details-marker { display: none; }

.faq-answer {
  padding: 0 0 20px;
  animation: fadeIn 0.2s ease;
}
.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.form-section { background: var(--warm-bg); }

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  background: var(--white);
  border-radius: 24px;
  padding: 56px;
  box-shadow: var(--shadow-l);
  border: 1px solid var(--linen);
}

.form-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 16px;
}
.form-text p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.form-promise {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-promise li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
}
.form-promise li::before {
  content: '✦';
  color: var(--rope);
  font-size: 0.7em;
  flex-shrink: 0;
}

.lead-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bark);
}
.req { color: var(--rope); }
.optional { color: var(--text-2); font-weight: 400; font-size: 0.8em; }

.form-group input,
.form-group textarea {
  background: var(--cream);
  border: 1.5px solid var(--linen);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  resize: vertical;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rope);
  box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.18);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-2); opacity: 0.6; }

.form-consent { margin-top: -6px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--earth);
  cursor: pointer;
}
.checkbox-label a { color: var(--earth); text-decoration: underline; }

.site-footer { background: var(--dark); padding: 56px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-info { display: flex; flex-direction: column; gap: 7px; }
.footer-info p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.footer-info a { color: rgba(255,255,255,0.5); }
.footer-info a:hover { color: var(--sand); }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--sand); }

.footer-copy { padding: 18px 0; }
.footer-copy p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 200;
  max-width: 600px;
  margin: 0 auto;
  transform: translateY(calc(100% + 40px));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-l);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.cookie-inner p {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  min-width: 200px;
}
.cookie-inner a { color: var(--rope); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-banner .btn-primary { background: var(--rope); border-color: var(--rope); }
.cookie-banner .btn-ghost { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.15); }
.cookie-banner .btn-ghost:hover { background: rgba(255,255,255,0.08); }

.legal-page {
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 80px;
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 8px;
}
.legal-date {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 40px;
  display: block;
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--bark);
  margin: 36px 0 12px;
}
.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-content ul, .legal-content ol {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 12px;
}
.legal-content ol { list-style: decimal; }
.legal-content a { color: var(--earth); text-decoration: underline; }

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-bg);
}
.success-content {
  text-align: center;
  max-width: 520px;
  padding: 48px 32px;
}
.success-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
}
.success-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 16px;
}
.success-content p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .benefits-inner,
  .process-inner { grid-template-columns: 1fr; gap: 40px; }
  .process-img-wrap { order: 0; }
  .learn-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .form-wrap { padding: 40px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 24px;
    border-bottom: 1px solid var(--linen);
    box-shadow: var(--shadow-l);
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav a {
    width: 100%;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(196,168,130,0.12);
  }
  .nav .nav-cta {
    margin: 16px 24px 0;
    width: calc(100% - 48px);
    text-align: center;
    border-radius: var(--radius);
    padding: 13px 20px;
  }

  .burger { display: flex; }

  .hero-title { font-size: 2.25rem; }

  .for-whom-grid { grid-template-columns: 1fr 1fr; }

  .learn-grid { grid-template-columns: 1fr; }

  .portfolio-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .instructor-inner { grid-template-columns: 1fr; gap: 32px; }
  .instructor-img-wrap { display: flex; justify-content: center; }

  .reviews-grid { grid-template-columns: 1fr; }

  .form-wrap { grid-template-columns: 1fr; gap: 32px; padding: 28px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  .cta-strip-inner { flex-direction: column; text-align: center; }

  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}

@media (max-width: 480px) {
  .for-whom-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .form-wrap { padding: 24px 20px; }
}
