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

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

body {
  font-family: 'Inter', sans-serif;
  background: #FAF7F2;
  color: #3D2B1F;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  color: #3D2B1F;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.1rem; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: .01em; }

ul { list-style: none; }

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

section { padding: 80px 0; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #C4704A;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: #6B5043;
  max-width: 600px;
  margin: 12px 0 36px;
  line-height: 1.65;
}

.btn-primary {
  display: inline-block;
  background: #C4704A;
  color: #FAF7F2;
  padding: 15px 34px;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-primary:hover { background: #A85A38; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #C4704A;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .02em;
  border: 1.5px solid #C4704A;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
  margin-top: 28px;
}
.btn-secondary:hover { background: #C4704A; color: #FAF7F2; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196, 112, 74, .12);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(61, 43, 31, .08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #3D2B1F;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  letter-spacing: .02em;
}
.logo-mark {
  color: #C4704A;
  font-size: 1.1rem;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: #6B5043;
  transition: color .18s;
  text-decoration: none;
}
.main-nav a:hover { color: #C4704A; }

.nav-cta {
  background: #C4704A;
  color: #FAF7F2 !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-size: .875rem !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: #A85A38 !important; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  height: 2px;
  background: #3D2B1F;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #FAF7F2;
  border-top: 1px solid rgba(196,112,74,.12);
  padding: 16px 24px 20px;
  gap: 4px;
  transition: opacity .2s;
}
.mobile-nav.open { display: flex; }
.mob-link {
  font-size: .95rem;
  font-weight: 500;
  color: #6B5043;
  padding: 10px 0;
  border-bottom: 1px solid rgba(196,112,74,.1);
  text-decoration: none;
  transition: color .18s;
}
.mob-link:last-child { border-bottom: none; }
.mob-link:hover { color: #C4704A; }
.mob-cta {
  margin-top: 8px;
  background: #C4704A;
  color: #FAF7F2 !important;
  padding: 12px 20px;
  border-radius: 4px;
  text-align: center;
  border-bottom: none !important;
}
.mob-cta:hover { background: #A85A38 !important; }

.hero {
  padding: 90px 0 80px;
  background: linear-gradient(135deg, #FAF7F2 0%, #F0E8DF 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #C4704A;
  margin-bottom: 18px;
}
.hero h1 { margin-bottom: 20px; color: #2A1A0F; }
.hero-sub {
  font-size: 1.1rem;
  color: #6B5043;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-image img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  max-height: 400px;
  box-shadow: 0 12px 40px rgba(61, 43, 31, .15);
}

.audience { background: #FAF7F2; }
.audience h2 { margin-bottom: 40px; max-width: 480px; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.audience-card {
  background: #FFF;
  border: 1px solid rgba(196,112,74,.12);
  border-radius: 8px;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.audience-card:hover { box-shadow: 0 6px 24px rgba(196,112,74,.1); transform: translateY(-2px); }
.aud-icon {
  color: #C4704A;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.audience-card p { font-size: .9rem; color: #6B5043; line-height: 1.65; }

.learn { background: #F0E8DF; }
.learn h2 { margin-bottom: 40px; }
.learn-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(196,112,74,.18);
}
.learn-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(196,112,74,.18);
  align-items: start;
  transition: background .15s;
}
.learn-item:hover { background: rgba(196,112,74,.04); margin: 0 -24px; padding-left: 24px; padding-right: 24px; }
.learn-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: rgba(196,112,74,.3);
  line-height: 1;
  padding-top: 4px;
}
.learn-item h3 { margin-bottom: 6px; font-size: 1rem; }
.learn-item p { font-size: .9rem; color: #6B5043; line-height: 1.65; }

.gallery { background: #FAF7F2; }
.gallery h2 { margin-bottom: 8px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 36px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #EDE0D4;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item--wide img { height: 260px; }
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(61,43,31,.5));
  color: #FAF7F2;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
}

.process { background: #2A1A0F; color: #EDE0D4; }
.process .section-tag { color: #C4704A; }
.process h2 { color: #EDE0D4; margin-bottom: 30px; }
.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.process-image img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
  max-height: 420px;
  opacity: .9;
}
.process-steps { display: flex; flex-direction: column; gap: 22px; }
.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: #C4704A;
  border-radius: 50%;
  margin-top: 7px;
}
.process-step p { font-size: .95rem; color: #C4B49A; line-height: 1.65; }
.process-step strong { color: #EDE0D4; }

.materials { background: #F0E8DF; }
.materials h2 { margin-bottom: 36px; }
.materials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.materials-image img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(61,43,31,.1);
}
.materials-intro { font-size: 1rem; color: #6B5043; margin-bottom: 22px; line-height: 1.65; }
.materials-list ul { display: flex; flex-direction: column; gap: 11px; }
.materials-list li {
  font-size: .9rem;
  color: #3D2B1F;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.materials-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #C4704A;
  font-weight: 600;
}
.materials-note {
  margin-top: 22px;
  font-size: .85rem;
  color: #9C7A6A;
  font-style: italic;
}

.faq { background: #FAF7F2; }
.faq h2 { margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 760px; }
.faq-item {
  border-bottom: 1px solid rgba(196,112,74,.18);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(196,112,74,.18); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #3D2B1F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color .18s;
}
.faq-item summary:hover { color: #C4704A; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #C4704A;
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 22px; }
.faq-answer p { font-size: .9rem; color: #6B5043; line-height: 1.7; }

.form-section { background: #F0E8DF; }
.form-box {
  max-width: 680px;
  margin: 0 auto;
  background: #FAF7F2;
  border-radius: 12px;
  padding: 52px 52px;
  box-shadow: 0 8px 40px rgba(61,43,31,.08);
}
.form-box .section-tag { color: #C4704A; }
.form-box h2 { margin-bottom: 8px; }
.form-sub { font-size: .95rem; color: #6B5043; margin-bottom: 34px; line-height: 1.6; }
.lead-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: .8rem;
  font-weight: 500;
  color: #3D2B1F;
  letter-spacing: .02em;
}
.optional { color: #9C7A6A; font-weight: 400; }
.form-group input,
.form-group textarea {
  background: #FFF;
  border: 1.5px solid rgba(196,112,74,.25);
  border-radius: 5px;
  padding: 12px 14px;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  color: #3D2B1F;
  resize: vertical;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B8A09A; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: #C4704A;
  box-shadow: 0 0 0 3px rgba(196,112,74,.1);
}
.form-group input.error,
.form-group textarea.error { border-color: #C0392B; }
.field-error {
  font-size: .78rem;
  color: #C0392B;
  min-height: 16px;
  display: block;
}
.form-consent { display: flex; flex-direction: column; gap: 6px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .875rem;
  color: #6B5043;
  line-height: 1.5;
}
.consent-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: #C4704A;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.consent-label input[type="checkbox"]:focus { box-shadow: 0 0 0 3px rgba(196,112,74,.15); }
.consent-label a { color: #C4704A; text-decoration: underline; }
.consent-label a:hover { color: #A85A38; }
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  margin-top: 4px;
  border: none;
}

.site-footer { background: #2A1A0F; color: #C4B49A; padding: 56px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { color: #EDE0D4; font-size: 1.25rem; margin-bottom: 14px; }
.footer-logo .logo-mark { color: #C4704A; }
.footer-desc { margin-bottom: 18px; font-size: .875rem; color: #9C7A6A; }
.footer-brand p { font-size: .8rem; line-height: 1.8; color: #7A6050; }
.footer-legal-name { color: #9C7A6A !important; font-weight: 500; margin-top: 14px !important; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contact h4 {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9C7A6A;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.footer-links a {
  font-size: .85rem;
  color: #7A6050;
  text-decoration: none;
  transition: color .18s;
}
.footer-links a:hover { color: #C4704A; }
.footer-contact p { font-size: .875rem; color: #7A6050; }
.footer-cta {
  display: inline-block;
  margin-top: 6px;
  font-size: .85rem;
  font-weight: 500;
  color: #C4704A !important;
  text-decoration: underline;
  text-decoration-color: rgba(196,112,74,.4);
  transition: color .18s;
}
.footer-cta:hover { color: #E08055 !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .8rem; color: #5A4030; }
.footer-bottom a { color: #7A6050; transition: color .18s; }
.footer-bottom a:hover { color: #C4704A; }

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: #2A1A0F;
  color: #C4B49A;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  max-width: 640px;
  width: calc(100% - 48px);
  padding: 20px 24px;
  opacity: 1;
  transition: opacity .3s, transform .3s;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
.cookie-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-inner p { font-size: .85rem; color: #9C7A6A; line-height: 1.55; flex: 1; min-width: 200px; }
.cookie-inner a { color: #C4704A; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: #C4704A;
  color: #FAF7F2;
  border: none;
  border-radius: 4px;
  padding: 9px 20px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
  font-family: 'Inter', sans-serif;
}
.btn-cookie-accept:hover { background: #A85A38; }
.btn-cookie-decline {
  background: transparent;
  color: #7A6050;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 9px 16px;
  font-size: .85rem;
  cursor: pointer;
  transition: color .2s;
  font-family: 'Inter', sans-serif;
}
.btn-cookie-decline:hover { color: #9C7A6A; }

.legal-page { min-height: 100vh; }
.legal-hero {
  background: #F0E8DF;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(196,112,74,.12);
}
.legal-hero .back-link {
  font-size: .85rem;
  color: #C4704A;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: color .18s;
}
.legal-hero .back-link:hover { color: #A85A38; }
.legal-hero h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.legal-hero .legal-date { font-size: .85rem; color: #9C7A6A; }
.legal-content { padding: 52px 0 72px; max-width: 760px; }
.legal-content h2 {
  font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #3D2B1F;
  margin: 36px 0 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: .9rem; color: #6B5043; line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { margin: 10px 0 14px 20px; list-style: disc; }
.legal-content li { font-size: .9rem; color: #6B5043; line-height: 1.7; margin-bottom: 6px; }

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FAF7F2 0%, #F0E8DF 100%);
  padding: 40px 24px;
  text-align: center;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(196,112,74,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.8rem;
  color: #C4704A;
}
.success-page h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 14px; }
.success-page .success-sub {
  font-size: 1rem;
  color: #6B5043;
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.success-page .back-home {
  display: inline-block;
  font-size: .85rem;
  color: #9C7A6A;
  margin-top: 24px;
  text-decoration: underline;
  text-decoration-color: rgba(156,122,106,.4);
  transition: color .18s;
}
.success-page .back-home:hover { color: #C4704A; }

@media (max-width: 960px) {
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .process-inner, .materials-inner { grid-template-columns: 1fr; gap: 36px; }
  .process-image { order: 1; }
  .process-text { order: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  section { padding: 56px 0; }
  .main-nav { display: none; }
  .burger { display: flex; }
  .hero { padding: 60px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 br { display: none; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 240px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: 1 / -1; }
  .audience-grid { grid-template-columns: 1fr; }
  .form-box { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: auto; }
  .cookie-banner { bottom: 0; border-radius: 10px 10px 0 0; width: 100%; }
  .learn-item { grid-template-columns: 44px 1fr; gap: 14px; }
}
