:root {
  --bg: #faf6f1;
  --surface: #f0e8dc;
  --accent: #8b6f47;
  --text: #2d2017;
  --muted: #7a6b5d;
  --border: #d4c4b0;
  --white: #ffffff;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

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

a:hover { color: var(--text); }

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

ul { list-style: disc; padding-left: 1.5em; }

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

.section {
  padding: 80px 0;
}

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

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 48px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

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

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(45,32,23,0.08);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 16px;
}

.logo-link {
  flex-shrink: 0;
  color: var(--text);
}

.brand-logo {
  height: 40px;
  width: auto;
}

.header-phone {
  margin-left: auto;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: var(--surface);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 8px;
}

.nav-cta:hover {
  background: var(--text);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  z-index: 10001;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
  text-align: center;
  width: 100%;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.hero {
  padding: 80px 0 60px;
  background: var(--surface);
}

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

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(45,32,23,0.12);
}

.trust-bar {
  padding: 32px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

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

.audience-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,32,23,0.08);
}

.audience-icon {
  margin-bottom: 16px;
}

.audience-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.audience-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.audience-no {
  border-color: #d4a0a0;
  background: #fdf5f5;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.learn-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,32,23,0.08);
}

.learn-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.learn-card-body {
  padding: 24px;
}

.learn-icon {
  color: var(--accent);
  margin-bottom: 12px;
}

.learn-card-body h3 {
  margin-bottom: 10px;
}

.learn-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.mentor-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(45,32,23,0.1);
}

.mentor-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.mentor-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1.5;
}

.mentor-content p {
  margin-bottom: 16px;
  color: var(--muted);
}

.mentor-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
}

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

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.step-connector {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.step-content img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.step-content h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.step-content p {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-banner {
  background: var(--surface);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
}

.cta-banner-content h2 {
  margin-bottom: 16px;
}

.cta-banner-content p {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,32,23,0.08);
}

.service-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.95rem;
}

.reviews-grid,
.reviews-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45,32,23,0.06);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-text {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.review-author span {
  font-size: 0.85rem;
  color: var(--muted);
}

.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  width: 120px;
  height: 60px;
  color: var(--text);
  transition: opacity 0.3s ease;
  cursor: default;
}

.partner-logo:hover {
  opacity: 1 !important;
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color 0.3s ease;
  min-height: 48px;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

.final-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border-radius: 20px;
  padding: 48px;
}

.final-cta-img {
  border-radius: 16px;
}

.final-cta-content h2 {
  margin-bottom: 16px;
}

.final-cta-content p {
  color: var(--muted);
  margin-bottom: 28px;
}

.page-hero {
  background: var(--surface);
  padding: 60px 0 40px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  color: var(--muted);
}

.about-inline-img {
  margin-top: 24px;
  border-radius: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.value-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--muted); font-size: 0.95rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.why-card:hover { transform: translateY(-4px); }

.why-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.why-card h3 { padding: 20px 24px 8px; }
.why-card p { padding: 0 24px 24px; color: var(--muted); font-size: 0.95rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.team-card h3 { margin-bottom: 4px; font-size: 1.2rem; }
.team-card p { color: var(--muted); font-size: 0.9rem; }

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: transparent;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.3s ease;
  min-height: 44px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.collection-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,32,23,0.08);
}

.collection-card.hidden {
  display: none;
}

.collection-card-img {
  position: relative;
}

.collection-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.collection-card-body {
  padding: 24px;
}

.collection-card-body h3 { margin-bottom: 10px; }
.collection-card-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }

.how-it-works { background: var(--surface); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.how-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.how-step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.how-step p { color: var(--muted); font-size: 0.9rem; }

.quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
}

.quickview-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  background: var(--white);
  border-radius: 16px;
  max-width: 680px;
  width: calc(100% - 32px);
  max-height: 85vh;
  overflow-y: auto;
  padding: 0;
}

.quickview-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--white);
  border: none;
  cursor: pointer;
  color: var(--text);
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  min-width: 44px;
  min-height: 44px;
}

.quickview-body img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.quickview-info {
  padding: 32px;
}

.quickview-info h3 { margin-bottom: 16px; font-size: 1.6rem; }
.quickview-info p { color: var(--muted); margin-bottom: 24px; line-height: 1.7; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap h2 { margin-bottom: 12px; }
.contact-form-wrap > p { color: var(--muted); margin-bottom: 32px; }

.contact-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: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Lora', serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s ease;
  width: 100%;
}

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

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

.form-error {
  font-size: 0.85rem;
  color: #b05050;
  min-height: 1.2em;
}

.form-consent label {
  font-weight: 400;
}

.consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}

.consent-label input {
  margin-top: 4px;
  min-width: 20px;
  min-height: 20px;
}

.consent-label span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-submit {
  width: 100%;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon { margin-bottom: 20px; }
.form-success h3 { margin-bottom: 12px; color: var(--accent); }
.form-success p { color: var(--muted); }

.contact-info-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.contact-info-card h3 {
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  margin-bottom: 4px;
}

.contact-detail p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.contact-detail a {
  color: var(--accent);
}

.contact-side-img {
  border-radius: 16px;
}

.legal-content {
  padding-top: 40px;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-container h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.legal-container h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.legal-container p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-container ul {
  margin-bottom: 14px;
  color: var(--muted);
}

.legal-container li {
  margin-bottom: 6px;
}

.legal-container a {
  color: var(--accent);
  text-decoration: underline;
}

.site-footer {
  background: var(--text);
  color: var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212,196,176,0.15);
}

.footer-logo {
  color: var(--border);
  margin-bottom: 16px;
  height: 36px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(212,196,176,0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-info a,
.footer-contact-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(212,196,176,0.7);
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: var(--white);
}

.footer-nav h4,
.footer-legal h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-nav a,
.footer-legal a {
  display: block;
  color: rgba(212,196,176,0.7);
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--white);
}

.cookie-settings-btn {
  display: block;
  background: none;
  border: none;
  color: rgba(212,196,176,0.7);
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 5px 0;
  text-align: left;
  transition: color 0.3s ease;
}

.cookie-settings-btn:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(212,196,176,0.5);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(45,32,23,0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--text);
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--white);
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 30px rgba(45,32,23,0.12);
  padding: 20px;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--accent);
  min-height: 48px;
  min-width: 100px;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background: var(--text);
  border-color: var(--text);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--accent);
}

.cookie-btn-settings:hover {
  background: var(--accent);
  color: var(--white);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--accent);
}

.cookie-btn-reject:hover {
  background: var(--accent);
  color: var(--white);
}

.cookie-btn-save {
  background: var(--accent);
  color: var(--white);
  width: 100%;
  margin-top: 12px;
}

.cookie-btn-save:hover {
  background: var(--text);
  border-color: var(--text);
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  background: var(--white);
  border-radius: 16px;
  max-width: 500px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
}

.cookie-modal h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.cookie-modal > p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  width: 40px;
  height: 40px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--surface);
}

.cookie-option {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 6px;
}

.cookie-option label input {
  min-width: 20px;
  min-height: 20px;
}

.cookie-option-title {
  font-weight: 600;
  font-size: 1rem;
}

.cookie-option p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  padding-left: 30px;
}

.faq-page-container {
  padding-top: 20px;
}

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

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

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .mentor-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .final-cta { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  body { font-size: 16px; }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.25rem; }

  .section { padding: 48px 0; }
  .container { padding: 0 16px; }

  .desktop-nav { display: none; }
  .burger-btn { display: flex; }

  .header-phone span { display: none; }

  .hero { padding: 48px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-ctas .btn { width: 100%; }

  .trust-row { gap: 20px; }
  .trust-badge { font-size: 0.8rem; }
  .trust-badge svg { width: 20px; height: 20px; }

  .audience-grid { grid-template-columns: 1fr; }
  .learn-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid,
  .reviews-full-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .mentor-grid { grid-template-columns: 1fr; text-align: center; }
  .mentor-content .section-title { text-align: center; }
  .mentor-stats { justify-content: center; }

  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .step-connector { display: none; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 20px; }

  .final-cta {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .cta-banner { padding: 40px 24px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

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

  .page-hero { padding: 40px 0 24px; }

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

  .partners-row { gap: 24px; }
  .partner-logo { width: 90px; height: 48px; }

  .cookie-banner-inner { flex-direction: column; gap: 16px; }
  .cookie-buttons { flex-direction: column; width: 100%; gap: 8px; }
  .cookie-btn { width: 100%; min-height: 48px; font-size: 16px; }
  .cookie-banner { padding: 16px; }
  .cookie-text p { font-size: 14px; }

  .cookie-modal {
    width: calc(100vw - 32px);
    max-width: 100%;
    max-height: 85vh;
    margin: 16px;
    padding: 24px 20px;
  }

  .quickview-modal {
    width: calc(100vw - 32px);
    max-height: 85vh;
  }

  .quickview-body img { height: 200px; }
  .quickview-info { padding: 24px 20px; }

  .back-to-top { bottom: 80px; right: 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  .team-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .mentor-stats { flex-direction: column; gap: 16px; }
}