:root {
  --bg: #fdfbf7;
  --text: #2d2d2d;
  --accent-navy: #1e3a8a;
  --accent-red: #7f1d1d;
  --gray-light: #eae8e3;
  --gray-dark: #6b7280;
  --border: #d1cfca;
  --font-serif: "Georgia", serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

a:hover {
  transition: all 0.3s ease;
  color: var(--accent-navy);
  font-weight: 700;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.max-800 {
  max-width: 800px;
  margin: 0 auto;
}
.max-600 {
  max-width: 600px;
  margin: 0 auto;
}
.center {
  text-align: center;
}
.bg-alt {
  background-color: #f4f2ee;
}

h1,
h2,
h3,
.title-serif {
  font-family: var(--font-serif);
  color: var(--text);
  line-height: 1.2;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}
p {
  margin-bottom: 1.25rem;
}
.accent-navy {
  color: var(--accent-navy);
}
.section-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent-red);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.header {
  height: 80px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.logo {
  display: flex;
  flex-direction: row;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
}
.logo span {
  color: var(--accent-navy);
}
.logo img {
  width: 50px;
  height: 50px;
}
.nav__list {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav__link {
  text-decoration: none;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger-btn span {
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.fullscreen-menu.active {
  transform: translateY(0);
}
.menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.menu-nav a {
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.journal-intro {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}
.editorial__meta {
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
  display: block;
}
.editorial__lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4b5563;
}
.aside-image img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(1);
  margin-bottom: 1rem;
}
.aside-caption {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gray-dark);
}

.section {
  padding: 100px 0;
}
.notes {
  background: #f4f2ee;
}
.notes-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.note-card {
  background: var(--bg);
  padding: 48px;
  border: 1px solid var(--border);
  transition: 0.4s;
}
.note-card:hover {
  border-color: var(--accent-navy);
}
.note-num {
  color: var(--accent-navy);
  font-weight: 800;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 1.5rem;
}
.offset-top {
  transform: translateY(-30px);
}

.manifest-quote {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-style: italic;
  line-height: 1.3;
  color: var(--accent-red);
  padding: 48px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  margin: 48px 0;
}

.mentorship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.practice-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.practice__visual img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 20px 20px 0 var(--gray-light);
}

.faq-list {
  margin-top: 64px;
}
.faq-item {
  margin-bottom: 48px;
  border-left: 2px solid var(--accent-navy);
  padding-left: 32px;
}
.faq-q {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-box {
  background: white;
  padding: 64px;
  border: 1px solid var(--border);
}
.column-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-navy);
}
.form-group input {
  padding: 16px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
}
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0;
}
.checkbox-container input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}
.check-label {
  font-size: 0.875rem;
  color: var(--gray-dark);
  line-height: 1.5;
  cursor: pointer;
}

.check-label a {
  color: var(--accent-navy);
  text-decoration: underline;
}

.btn-submit {
  background: var(--text);
  color: white;
  border: none;
  padding: 20px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.3s;
}
.btn-submit:hover {
  background: var(--accent-navy);
}

.footer {
  padding: 80px 0 0;
  border-top: 2px solid var(--text);
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  padding-bottom: 64px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  text-decoration: none;
  color: var(--gray-dark);
  font-size: 0.8125rem;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  font-size: 0.75rem;
  color: var(--gray-dark);
}

.cookie-popup {
  position: fixed;
  bottom: 32px;
  right: 32px;
  left: 32px;
  max-width: 400px;
  background: white;
  padding: 24px;
  border: 1px solid var(--text);
  z-index: 5000;
  display: none;
}
.btn-cookie {
  background: var(--text);
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 16px;
  cursor: pointer;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .editorial-grid,
  .mentorship-grid,
  .practice-split {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 2.3rem;
  }
  .offset-top {
    transform: none;
  }
  .nav__list {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    margin: 80px 0 30px;
    font-size: 28px;
  }
}
