@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --charcoal: #2B2B2B;
  --terracotta: #D97A62;
  --olive: #78866B;
  --ivory: #F8F5F0;
  --ivory-dark: #EDE9E2;
  --charcoal-light: #4a4a4a;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-ui: 'Inter', sans-serif;
  --container: 1280px;
  --gap: 2rem;
  --border: 1px solid var(--olive);
}

html {
  background-color: var(--ivory);
  scroll-behavior: smooth;
}

body {
  background-color: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

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

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

p {
  max-width: 680px;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.divider {
  border: none;
  border-top: var(--border);
  margin: 0;
}

.section {
  padding: 5rem 0;
  border-bottom: var(--border);
}

.section:last-child {
  border-bottom: none;
}

.section-inner {
  padding: 4rem 0;
  border-bottom: var(--border);
}

.section-inner:last-child {
  border-bottom: none;
}

.frame {
  border: var(--border);
  padding: 2.5rem;
}

.frame-terracotta {
  border-top: 3px solid var(--terracotta);
  border-left: var(--border);
  border-right: var(--border);
  border-bottom: var(--border);
  padding: 2.5rem;
}

.label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  display: block;
}

.label-olive {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1rem;
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--ivory);
  border-bottom: var(--border);
}

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

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.header-logo:hover {
  color: var(--charcoal);
}

.header-logo span {
  color: var(--terracotta);
}

.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2.5rem;
}

.nav-list a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 2px;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--terracotta);
  transition: width 0.2s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--terracotta);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background-color: var(--charcoal);
  transition: all 0.3s ease;
}

.nav-mobile {
  display: none;
  background-color: var(--ivory);
  border-bottom: var(--border);
  padding: 1.5rem 0;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile .nav-list {
  flex-direction: column;
  gap: 0;
}

.nav-mobile .nav-list li {
  border-bottom: var(--border);
  margin: 0;
}

.nav-mobile .nav-list a {
  display: block;
  padding: 0.85rem 2rem;
}

.page-body {
  padding-top: 64px;
}

.site-footer {
  background-color: var(--charcoal);
  color: var(--ivory);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248,245,240,0.15);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ivory);
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.footer-brand h3 span {
  color: var(--terracotta);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(248,245,240,0.65);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(248,245,240,0.7);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--terracotta);
}

.footer-col p {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(248,245,240,0.7);
  line-height: 1.65;
  max-width: none;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(248,245,240,0.45);
  max-width: none;
  margin: 0;
}

.footer-disclaimer {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(248,245,240,0.45);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(248,245,240,0.08);
  margin-top: 1rem;
}

.hero {
  background-color: var(--charcoal);
  min-height: 78vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.hero-text {
  padding: 6rem 4rem 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text .label {
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.hero-text p {
  color: rgba(248,245,240,0.75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.btn:hover {
  background-color: var(--terracotta);
  color: var(--ivory);
}

.btn-dark {
  border-color: var(--ivory);
  color: var(--ivory);
}

.btn-dark:hover {
  background-color: var(--ivory);
  color: var(--charcoal);
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

.editorial-intro {
  background-color: var(--ivory);
}

.editorial-intro-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.editorial-intro-inner h2 {
  margin-bottom: 1.5rem;
}

.editorial-intro-inner p {
  max-width: none;
  font-size: 1.05rem;
  color: var(--charcoal-light);
}

.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.matrix-cell {
  border: var(--border);
  padding: 2.5rem;
  margin: -1px 0 0 -1px;
}

.matrix-cell h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: var(--border);
}

.matrix-cell p {
  max-width: none;
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

.matrix-cell-image {
  padding: 0;
  overflow: hidden;
}

.matrix-cell-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.timeline-strip {
  overflow-x: auto;
}

.timeline-row {
  display: flex;
  border: var(--border);
}

.timeline-item {
  flex: 1;
  padding: 2rem 1.5rem;
  border-right: var(--border);
  min-width: 180px;
}

.timeline-item:last-child {
  border-right: none;
}

.timeline-item .year {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--charcoal-light);
  max-width: none;
  margin: 0;
}

.myths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--border);
  margin-bottom: 3rem;
}

.myth-col {
  padding: 2.5rem;
}

.myth-col:first-child {
  border-right: var(--border);
  background-color: var(--ivory-dark);
}

.myth-col h3 {
  margin-bottom: 1.5rem;
  color: var(--olive);
}

.myth-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: var(--border);
}

.myth-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.myth-item .myth-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
}

.myth-item p {
  font-size: 0.93rem;
  max-width: none;
  margin: 0;
  line-height: 1.65;
}

.glossary-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: var(--border);
}

.glossary-rail {
  border-right: var(--border);
  background-color: var(--charcoal);
  padding: 2rem 0;
}

.glossary-rail-title {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding: 0 1.5rem 1rem;
  border-bottom: 1px solid rgba(248,245,240,0.12);
  margin-bottom: 0;
}

.glossary-term {
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(248,245,240,0.08);
  cursor: pointer;
  transition: background-color 0.15s;
}

.glossary-term:last-child {
  border-bottom: none;
}

.glossary-term .term-name {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(248,245,240,0.85);
  display: block;
  margin-bottom: 0.2rem;
}

.glossary-term .term-sr {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(248,245,240,0.4);
}

.glossary-term:hover {
  background-color: rgba(248,245,240,0.05);
}

.glossary-content {
  padding: 2.5rem;
}

.glossary-content h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: var(--border);
}

.glossary-content p {
  max-width: none;
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

.methodology-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.methodology-text {
  padding: 3rem 4rem 3rem 0;
  border-right: var(--border);
}

.methodology-image {
  padding: 0 0 0 3rem;
  display: flex;
  align-items: center;
}

.methodology-image img {
  width: 100%;
  object-fit: cover;
  max-height: 380px;
}

.faq-list {
  border: var(--border);
}

.faq-item {
  padding: 2rem 2.5rem;
  border-bottom: var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.faq-item p {
  max-width: none;
  font-size: 0.95rem;
  color: var(--charcoal-light);
  margin: 0;
}

.contact-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--border);
}

.contact-preview-text {
  padding: 3rem;
  border-right: var(--border);
}

.contact-preview-info {
  padding: 3rem;
  background-color: var(--charcoal);
  color: var(--ivory);
}

.contact-preview-info h3 {
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.contact-preview-info p {
  max-width: none;
  font-size: 0.9rem;
  color: rgba(248,245,240,0.75);
  line-height: 1.65;
}

.soft-cta {
  text-align: center;
  padding: 6rem 0;
}

.soft-cta h2 {
  margin-bottom: 1rem;
}

.soft-cta p {
  margin: 0 auto 2.5rem;
  color: var(--charcoal-light);
}

.page-hero {
  background-color: var(--charcoal);
  padding: 5rem 0 4rem;
  border-bottom: 3px solid var(--terracotta);
}

.page-hero h1 {
  color: var(--ivory);
  max-width: 800px;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(248,245,240,0.65);
  max-width: 600px;
  font-size: 1.05rem;
  margin: 0;
}

.page-hero .label {
  margin-bottom: 1.25rem;
}

.text-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 0;
}

.text-page h1 {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: var(--border);
}

.text-page h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.text-page p {
  max-width: none;
  color: var(--charcoal-light);
}

.text-page ul {
  margin-bottom: 1.25rem;
}

.text-page ul li {
  color: var(--charcoal-light);
  font-size: 1rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  max-width: none;
  color: var(--charcoal-light);
}

.principles-list {
  border: var(--border);
}

.principle-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-bottom: var(--border);
  align-items: flex-start;
}

.principle-item:last-child {
  border-bottom: none;
}

.principle-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--terracotta);
  min-width: 2rem;
  padding-top: 0.1rem;
}

.principle-item h3 {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.principle-item p {
  font-size: 0.87rem;
  color: var(--charcoal-light);
  max-width: none;
  margin: 0;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--border);
}

.contact-form-col {
  padding: 3rem;
  border-right: var(--border);
}

.contact-info-col {
  padding: 3rem;
  background-color: var(--charcoal);
  color: var(--ivory);
}

.contact-info-col h2 {
  color: var(--ivory);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(248,245,240,0.15);
}

.contact-info-col .info-row {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(248,245,240,0.1);
}

.contact-info-col .info-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-info-col .info-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.35rem;
}

.contact-info-col .info-value {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(248,245,240,0.8);
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: var(--border);
  background-color: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  border-radius: 0;
}

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

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

.thank-you-block {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
}

.thank-you-frame {
  border: 2px solid var(--olive);
  padding: 4rem 5rem;
  max-width: 560px;
  text-align: center;
}

.thank-you-frame h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.thank-you-frame p {
  max-width: none;
  color: var(--charcoal-light);
  margin-bottom: 2rem;
}

.blogs-hero-image {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border: var(--border);
  margin-bottom: 3rem;
}

.blogs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.blog-card {
  border: var(--border);
  margin: -1px 0 0 -1px;
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: var(--border);
}

.blog-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.blog-card-content p {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: none;
  flex: 1;
}

.blog-card-content .read-more {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.blog-card-content .read-more:hover {
  color: var(--charcoal);
}

.blog-article {
  padding: 5rem 0;
}

.blog-article-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.blog-article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-article-body h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.blog-article-body p {
  max-width: none;
  color: var(--charcoal-light);
}

.blog-article-body ul, .blog-article-body ol {
  margin-bottom: 1.25rem;
}

.blog-article-body ul li,
.blog-article-body ol li {
  color: var(--charcoal-light);
  font-size: 1rem;
}

.blog-article-sidebar {
  position: sticky;
  top: 90px;
}

.blog-meta {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: var(--border);
}

.blog-meta .meta-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.blog-meta .meta-item {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--olive);
  letter-spacing: 0.05em;
}

.blog-meta .meta-item strong {
  color: var(--charcoal);
}

.article-hero-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: var(--border);
  margin-bottom: 3rem;
}

.sidebar-frame {
  border: var(--border);
  padding: 2rem;
  margin-bottom: 2rem;
}

.sidebar-frame h3 {
  font-size: 0.7rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: var(--border);
  color: var(--terracotta);
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 0;
  border-bottom: var(--border);
}

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

.sidebar-links a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--charcoal);
  display: block;
  padding: 0.7rem 0;
  line-height: 1.4;
}

.sidebar-links a:hover {
  color: var(--terracotta);
}

.blog-full-image {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border: var(--border);
  margin: 2rem 0;
}

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.two-col-text p {
  max-width: none;
  color: var(--charcoal-light);
}

.terracotta-divider {
  border: none;
  border-top: 2px solid var(--terracotta);
  margin: 2.5rem 0;
}

.numbered-block {
  counter-reset: item;
  list-style: none;
  padding: 0;
}

.numbered-block li {
  counter-increment: item;
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: var(--border);
  align-items: flex-start;
}

.numbered-block li:last-child {
  border-bottom: none;
}

.numbered-block li::before {
  content: counter(item, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--terracotta);
  min-width: 2.5rem;
  line-height: 1;
  padding-top: 0.15rem;
}

.numbered-block li p {
  max-width: none;
  color: var(--charcoal-light);
  font-size: 0.95rem;
  margin: 0;
}

.numbered-block li h3 {
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.pullquote {
  border-left: 3px solid var(--terracotta);
  padding: 1rem 2rem;
  margin: 2.5rem 0;
  background-color: var(--ivory-dark);
}

.pullquote p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  max-width: none;
  margin: 0;
  line-height: 1.5;
}

.myth-fact-stack .myth-fact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--border);
  margin-bottom: -1px;
}

.myth-fact-row .mf-cell {
  padding: 2rem 2.5rem;
}

.myth-fact-row .mf-cell:first-child {
  border-right: var(--border);
  background-color: var(--ivory-dark);
}

.myth-fact-row .mf-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 0.5rem;
}

.myth-fact-row .mf-label-fact {
  color: var(--terracotta);
}

.myth-fact-row p {
  font-size: 0.93rem;
  max-width: none;
  color: var(--charcoal-light);
  margin: 0;
  line-height: 1.65;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--border);
}

.stat-item {
  padding: 2rem 1.5rem;
  border-right: var(--border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item .stat-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

.season-table {
  width: 100%;
  border-collapse: collapse;
  border: var(--border);
  margin: 2rem 0;
}

.season-table th {
  background-color: var(--charcoal);
  color: var(--ivory);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-right: 1px solid rgba(248,245,240,0.15);
}

.season-table th:last-child {
  border-right: none;
}

.season-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  border-bottom: var(--border);
  border-right: var(--border);
  vertical-align: top;
}

.season-table td:last-child {
  border-right: none;
}

.season-table tr:last-child td {
  border-bottom: none;
}

.season-table tr:nth-child(even) td {
  background-color: var(--ivory-dark);
}

.breadcrumb {
  padding: 1rem 0;
  border-bottom: var(--border);
  background-color: var(--ivory);
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--olive);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-list li a {
  color: var(--charcoal-light);
  font-size: 0.75rem;
}

.breadcrumb-list li a:hover {
  color: var(--terracotta);
}

.breadcrumb-list li::after {
  content: '/';
  color: var(--olive);
  margin-left: 0.0rem;
}

.breadcrumb-list li:last-child::after {
  display: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--charcoal);
  border-top: 2px solid var(--olive);
  z-index: 9000;
  padding: 1.25rem 0;
  display: none;
}

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

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-family: var(--font-ui);
  font-size: 0.83rem;
  color: rgba(248,245,240,0.8);
  max-width: 700px;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner p a {
  color: var(--terracotta);
  text-decoration: underline;
}

.cookie-banner-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--ivory);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.cookie-btn:hover {
  background-color: var(--ivory);
  color: var(--charcoal);
}

.cookie-btn-accept {
  background-color: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--ivory);
}

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

.schedule-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-row .day-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 0.83rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(248,245,240,0.1);
  color: rgba(248,245,240,0.75);
}

.schedule-row .day-line:last-child {
  border-bottom: none;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-image {
    display: none;
  }
  .hero-text {
    padding: 5rem 0;
  }
  .matrix-grid {
    grid-template-columns: 1fr;
  }
  .matrix-cell-image {
    min-height: 220px;
  }
  .about-layout {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-col {
    border-right: none;
    border-bottom: var(--border);
  }
  .glossary-layout {
    grid-template-columns: 1fr;
  }
  .glossary-rail {
    border-right: none;
    border-bottom: var(--border);
  }
  .blogs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-article-inner {
    grid-template-columns: 1fr;
  }
  .blog-article-sidebar {
    position: static;
  }
  .mythology-text {
    grid-template-columns: 1fr;
  }
  .two-col-text {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(3) {
    border-top: var(--border);
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .container {
    padding: 0 1.25rem;
  }
  .section {
    padding: 3rem 0;
  }
  .frame {
    padding: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .myths-grid {
    grid-template-columns: 1fr;
  }
  .myth-col:first-child {
    border-right: none;
    border-bottom: var(--border);
  }
  .contact-preview {
    grid-template-columns: 1fr;
  }
  .contact-preview-text {
    border-right: none;
    border-bottom: var(--border);
  }
  .methodology-block {
    grid-template-columns: 1fr;
  }
  .methodology-text {
    padding: 0;
    border-right: none;
    border-bottom: var(--border);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .methodology-image {
    padding: 0;
  }
  .blogs-grid {
    grid-template-columns: 1fr;
  }
  .myth-fact-stack .myth-fact-row {
    grid-template-columns: 1fr;
  }
  .myth-fact-row .mf-cell:first-child {
    border-right: none;
    border-bottom: var(--border);
  }
  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
  .timeline-row {
    flex-direction: column;
  }
  .timeline-item {
    border-right: none;
    border-bottom: var(--border);
  }
  .timeline-item:last-child {
    border-bottom: none;
  }
  .hero-text {
    padding: 3rem 0;
  }
  .page-hero {
    padding: 3rem 0 2.5rem;
  }
  .thank-you-frame {
    padding: 2.5rem 1.5rem;
  }
  .contact-preview-info {
    padding: 2rem;
  }
  .contact-preview-text {
    padding: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .breadcrumb {
    display: none;
  }
}
