:root {
  --lf-dark: #393E41;
  --lf-white: #FFFDFD;
  --lf-blue: #3083DC;
  --lf-teal: #2EBFA5;
  --lf-teal-dark: #23967F;
  --lf-bg: #FFFDFD;
  --lf-text: #393E41;
  --lf-text-light: #6c7174;
  --lf-text-inv: #FFFDFD;
  --lf-border: #d0d3d4;
  --lf-shadow: rgba(57, 62, 65, 0.12);
}

body {
  background: var(--lf-bg);
  color: var(--lf-text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  padding-top: 56px;
}

.progress-bar-container {
  width: 100vw;
  height: 3px;
  background: transparent;
  position: fixed;
  top: 56px;
  left: 0;
  z-index: 999;
  pointer-events: none;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--lf-blue), var(--lf-teal));
  width: 0%;
  transition: width 0.22s cubic-bezier(0.9, 0.22, 0.37, 0.99);
  border-radius: 0 2px 2px 0;
}

@media (max-width: 480px) {
  .progress-bar-container {
    top: 48px;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--lf-dark);
  height: 56px;
}

.site-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lf-text-inv);
}

.site-brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
}

.site-brand-text {
  border-radius: 0;
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-brand-text img {
  width: 140px;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .site-header {
    height: 48px;
  }
  body {
    padding-top: 48px;
  }
  .site-brand-icon {
    width: 28px;
    height: 28px;
  }
  .site-brand-text img {
    width: 110px;
  }
}
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  position: relative;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--lf-text-inv);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  pointer-events: none;
}
.burger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.burger, .burger * {
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: var(--lf-dark);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 80px 40px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.nav-overlay-menu a {
  color: var(--lf-text-inv);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}
.nav-overlay-menu a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 0;
  height: 1.5px;
  background: var(--lf-teal);
  transition: width 0.25s ease;
}
.nav-overlay-menu a:hover, .nav-overlay-menu a:focus {
  color: var(--lf-teal);
}
.nav-overlay-menu a:hover::after, .nav-overlay-menu a:focus::after {
  width: 100%;
}

@media (max-width: 480px) {
  .nav-overlay {
    padding: 70px 20px 30px;
  }
  .nav-overlay-menu a {
    font-size: 0.95rem;
  }
}
.site-footer {
  background: var(--lf-dark);
  color: var(--lf-text-inv);
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #b0b3b5;
  margin: 0;
  max-width: 400px;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-top: 8px;
  border-radius: 10px;
  background: var(--lf-white);
  padding: 8px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.footer-nav a {
  color: var(--lf-text-inv);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 3px 0;
  transition: color 0.2s ease;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--lf-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  text-align: center;
  padding: 14px 20px;
  font-size: 0.82rem;
  color: #b0b3b5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .footer-nav {
    align-items: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-desc {
    max-width: 100%;
  }
}
.contact-page {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.contact-intro {
  max-width: 700px;
  margin: 0 auto 48px;
}
.contact-intro p {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.7;
  margin-bottom: 0.6em;
}

.alert {
  max-width: 900px;
  margin: 0 auto 24px;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  font-size: 0.95rem;
}
.alert ul {
  margin: 0.5em 0 0 1.2em;
}
.alert.alert-success {
  background: #e8f8f0;
  color: #1a7a4c;
  border: 1.5px solid #1a7a4c;
}
.alert.alert-error {
  background: #fef0f0;
  color: #c0392b;
  border: 1.5px solid #c0392b;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto 64px;
  align-items: start;
}

.contact-heading {
  font-family: "Panchang", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--lf-text);
  margin-bottom: 20px;
}

.contact-info {
  padding-top: 4px;
}

.contact-address {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--lf-text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-link {
  margin-bottom: 6px;
}
.contact-link a {
  color: var(--lf-text);
  text-decoration: underline;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.contact-link a:hover {
  color: var(--lf-teal);
}

.contact-socials {
  list-style: none;
  margin-top: 16px;
  padding: 0;
}
.contact-socials li {
  margin-bottom: 8px;
}
.contact-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lf-text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.contact-socials a:hover {
  color: var(--lf-teal);
}
.contact-socials a svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--lf-text);
}
.form-group input,
.form-group textarea {
  font-size: 0.95rem;
  padding: 10px 12px;
  border: none;
  border-radius: 0;
  background: #e0e0e0;
  color: var(--lf-text);
  outline: none;
  transition: background 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  background: #d0d0d0;
}
.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.btn {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 28px;
  border: 2px solid var(--lf-text);
  background: transparent;
  color: var(--lf-text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover, .btn:focus {
  background: var(--lf-text);
  color: #fff;
}

.contact-links {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid var(--lf-border);
}

.contact-link-block {
  margin-bottom: 28px;
}
.contact-link-block p {
  font-size: 0.92rem;
  color: var(--lf-text);
  line-height: 1.5;
  margin-bottom: 2px;
}
.contact-link-block a {
  font-size: 0.88rem;
  color: var(--lf-text);
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.2s ease;
}
.contact-link-block a:hover {
  color: var(--lf-teal);
}

@media (max-width: 768px) {
  .contact-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .contact-page {
    padding: 0 16px 40px;
  }
  .contact-intro p {
    font-size: 0.88rem;
  }
}
.bio-page {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.bio-content {
  max-width: 800px;
  margin: 0 auto;
}

.bio-question {
  font-family: "Panchang", sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--lf-text);
  text-transform: uppercase;
  margin-bottom: 28px;
  line-height: 1.3;
}

.bio-content p {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.8;
  margin-bottom: 1.2em;
  text-align: left;
}

.bio-copyright {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--lf-border);
  font-size: 0.82rem !important;
  color: var(--lf-text);
  text-align: center !important;
}

@media (max-width: 600px) {
  .bio-page {
    padding: 0 16px 40px;
  }
  .bio-content p {
    font-size: 0.88rem;
  }
}
.actu-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 30px 16px 60px;
  overflow: hidden;
}

.actu-header {
  text-align: center;
  margin-bottom: 36px;
}
.actu-header img {
  width: 100%;
}

.actu-title {
  font-family: "Panchang", sans-serif;
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  font-weight: 700;
  color: var(--lf-text);
  margin: 0 0 8px;
  word-break: break-word;
}

.actu-desc {
  font-size: 0.95rem;
  color: var(--lf-text-light);
  max-width: 500px;
  margin: 0 auto;
}

.actu-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.actu-card {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  gap: 20px;
  background: #eef5fb;
  border: 1.5px solid #d6e4f0;
  border-radius: 14px;
  padding: 20px;
  transition: box-shadow 0.2s ease;
  overflow: hidden;
}
.actu-card:hover {
  box-shadow: 0 6px 24px var(--lf-shadow);
}

.actu-card-img {
  margin: 0;
}
.actu-card-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  border: 1.5px solid #d0dce8;
  display: block;
  background: #fff;
}

.actu-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.actu-card-title {
  font-family: "Panchang", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lf-text);
  margin: 0;
  line-height: 1.3;
}

.actu-card-date {
  font-size: 0.82rem;
  color: var(--lf-text-light);
}

.actu-card-excerpt {
  font-size: 0.88rem;
  color: var(--lf-text);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.actu-card-btn {
  align-self: flex-end;
  display: inline-block;
  margin-top: 8px;
  padding: 8px 20px;
  background: var(--lf-teal);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.actu-card-btn:hover {
  background: var(--lf-teal-dark);
}

.actu-empty {
  text-align: center;
  color: var(--lf-text-light);
  font-size: 1rem;
  padding: 60px 0;
}

.actu-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.actu-popup.active {
  opacity: 1;
  visibility: visible;
}

.actu-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.actu-popup-content {
  position: relative;
  z-index: 1;
  background: var(--lf-white);
  border-radius: 18px;
  max-width: 700px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.actu-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--lf-text-light);
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 2;
}
.actu-popup-close:hover {
  color: var(--lf-text);
}

.actu-popup-img {
  margin: 0 0 20px;
}
.actu-popup-img img {
  width: 100%;
  max-height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
  display: block;
  background: #f0f0f0;
}

.actu-popup-title {
  font-family: "Panchang", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lf-text);
  margin: 0 0 6px;
  line-height: 1.3;
}

.actu-popup-date {
  font-size: 0.82rem;
  color: var(--lf-text-light);
  display: block;
  margin-bottom: 2px;
}

.actu-popup-author {
  font-size: 0.85rem;
  color: var(--lf-text-light);
  font-style: italic;
  display: block;
  margin-bottom: 16px;
}

.actu-popup-body {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.7;
}
.actu-popup-body p {
  margin-bottom: 0.8em;
}
.actu-popup-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 12px 0;
}

@media (max-width: 700px) {
  .actu-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }
  .actu-card-img img {
    max-height: 250px;
    width: 100%;
  }
  .actu-title {
    font-size: 1.3rem;
  }
  .actu-card-title {
    font-size: 1rem;
  }
  .actu-card-excerpt {
    font-size: 0.84rem;
  }
  .actu-popup-content {
    padding: 18px 14px;
    border-radius: 14px;
    width: calc(100% - 16px);
  }
  .actu-popup-title {
    font-size: 1.1rem;
  }
}
.articles-page {
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.articles-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.articles-title {
  font-size: 2.2rem;
  color: var(--lf-text);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.articles-description {
  font-size: 1.05rem;
  color: var(--lf-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.articles-list {
  margin: 2rem 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.8rem;
  padding: 0 1rem;
}

.article-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 12px var(--lf-shadow);
  padding: 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--lf-border);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--lf-shadow);
}

.article-card-header {
  margin-bottom: 1rem;
}

.article-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.article-card-link {
  color: var(--lf-text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.article-card-link:hover {
  color: var(--lf-blue);
}

.article-card-content {
  color: var(--lf-text-light);
  line-height: 1.6;
  font-size: 0.93rem;
}

.articles-no-results {
  text-align: center;
  padding: 3rem;
  color: var(--lf-text-light);
}

.no-results-message {
  font-size: 1.1rem;
}

.article-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.article-solo {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--lf-shadow);
  padding: 2rem;
  border: 1px solid var(--lf-border);
}

.article-header {
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #f0f1f2;
  padding-bottom: 1.2rem;
}

.article-title {
  font-size: 2rem;
  color: var(--lf-text);
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.article-meta {
  display: flex;
  gap: 1rem;
  color: var(--lf-text-light);
  font-size: 0.9rem;
}

.article-date {
  font-weight: 500;
}

.article-author {
  font-style: italic;
}

.article-image {
  margin: 1.5rem 0;
  text-align: center;
}

.article-image-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--lf-shadow);
}

.article-description {
  font-size: 1.05rem;
  color: var(--lf-text-light);
  font-style: italic;
  margin: 1.2rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-left: 4px solid var(--lf-blue);
  border-radius: 0 8px 8px 0;
}

.article-content {
  line-height: 1.8;
  font-size: 1rem;
  color: var(--lf-text);
}
.article-content h1, .article-content h2, .article-content h3 {
  color: var(--lf-text);
  margin: 1.5rem 0 0.8rem;
}
.article-content p {
  margin-bottom: 1rem;
}
.article-content ul, .article-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.article-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f0f1f2;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.article-back-btn,
.article-history-btn {
  padding: 0.65rem 1.3rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.article-back-btn {
  background: var(--lf-blue);
  color: white;
}
.article-back-btn:hover {
  background: #256db5;
}

.article-history-btn {
  background: #f0f1f2;
  color: var(--lf-text-light);
  border: 1px solid var(--lf-border);
}
.article-history-btn:hover {
  background: #e2e3e4;
  color: var(--lf-text);
}

.article-error {
  text-align: center;
  padding: 2.5rem;
  color: #c0392b;
  background: #fef0f0;
  border-radius: 8px;
  border: 1px solid #f5c6cb;
}

.admin-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.admin-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.admin-title {
  font-size: 2rem;
  color: var(--lf-text);
  font-weight: 700;
}

.admin-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--lf-shadow);
  padding: 2rem;
  border: 1px solid var(--lf-border);
}

.article-form {
  max-width: 100%;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--lf-text);
}

.form-input {
  width: 100%;
  padding: 0.7rem;
  border: 1.5px solid var(--lf-border);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--lf-blue);
  box-shadow: 0 0 0 3px rgba(48, 131, 220, 0.12);
}

.editor-container {
  margin: 1rem 0;
}

.article-content-editor {
  width: 100%;
  min-height: 300px;
  border: 1.5px solid var(--lf-border);
  border-radius: 6px;
  padding: 1rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
}

.article-form-actions {
  margin-top: 2rem;
  text-align: center;
}

.article-submit-btn,
.article-update-btn {
  background: var(--lf-teal);
  color: white;
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.article-submit-btn:hover,
.article-update-btn:hover {
  background: var(--lf-teal-dark);
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .article-title {
    font-size: 1.7rem;
  }
  .articles-title {
    font-size: 1.8rem;
  }
  .article-footer {
    flex-direction: column;
  }
  .article-meta {
    flex-direction: column;
    gap: 0.4rem;
  }
}
.home-page {
  display: block;
  min-height: auto;
  width: auto;
  overflow: visible;
}

.home-crumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0 12px;
  gap: 4px;
}

.home-crumb-label {
  font-family: "Panchang", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--lf-text);
}

.home-crumb-arrow {
  display: block;
}

.home-hero {
  position: relative;
  margin: 0 0 40px;
  width: 100%;
  overflow: hidden;
}

.home-hero-figure {
  position: relative;
  margin: 0;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: none;
  z-index: 0;
}

.home-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(49, 59, 80, 0.55);
  min-height: 420px;
}

.intro-card {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 24px;
  max-width: 920px;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(200, 210, 220, 0.5);
  border-radius: 18px;
  padding: 34px 32px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.22);
}

.intro-card-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.intro-title {
  font-family: "Panchang", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--lf-text);
  line-height: 1.2;
  margin: 0 0 0;
}

.intro-subtitle {
  font-family: "Panchang", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lf-text);
  margin: 0 0 16px;
}

.intro-paragraph {
  color: var(--lf-text);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0 0 8px;
}

.intro-cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: 14px;
  padding: 11px 28px;
  background: var(--lf-blue);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
}
.intro-cta:hover {
  background: #2269b8;
}

.intro-card-portrait {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
}
.intro-card-portrait img {
  display: block;
  width: 100%;
  max-width: 210px;
  height: auto;
  border-radius: 14px;
  border: 3px solid rgba(180, 200, 215, 0.6);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
  background: #fff;
}

@media (max-width: 780px) {
  .home-hero-content {
    padding: 20px 12px;
    min-height: 0;
  }
  .intro-card {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    max-width: 100%;
  }
  .intro-card-portrait {
    order: -1;
  }
  .intro-card-portrait img {
    max-width: 140px;
  }
  .intro-title {
    font-size: 1.2rem;
  }
  .intro-subtitle {
    font-size: 0.9rem;
  }
  .intro-paragraph {
    font-size: 0.8rem;
  }
}
.home-bio {
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.home-bio-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.home-bio-photo {
  margin: 0;
}
.home-bio-photo img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 24px var(--lf-shadow);
}

.home-bio-text {
  padding-top: 10px;
}
.home-bio-text p {
  font-size: 1rem;
  color: var(--lf-text);
  line-height: 1.7;
  margin-bottom: 1.2em;
}
.home-bio-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .home-bio-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-bio-photo img {
    max-width: 260px;
  }
}
.home-press {
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.home-press-figure {
  margin: 0;
  text-align: center;
}
.home-press-figure img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  border: 1.5px solid var(--lf-border);
  box-shadow: 0 4px 18px var(--lf-shadow);
  background: #fff;
}

.home-press-caption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--lf-text-light);
  font-style: italic;
}

.home-footer-panel {
  display: none;
}

.litt-page {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.litt-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0 20px;
  overflow: hidden;
  width: 100%;
}

.litt-title {
  font-family: "Panchang", sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--lf-text);
  text-align: center;
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.litt-section {
  margin-bottom: 56px;
}

.litt-section-title {
  font-family: "Panchang", sans-serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 600;
  color: var(--lf-text);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.4;
}

.litt-book {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 32px;
}

.litt-book-cover {
  margin: 0;
}
.litt-book-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1.5px solid var(--lf-border);
  box-shadow: 0 6px 28px var(--lf-shadow);
  background: #fff;
}

.litt-book-text p {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.7;
  margin-bottom: 1em;
}
.litt-book-text p:last-child {
  margin-bottom: 0;
}

.litt-full-image {
  margin: 0;
  text-align: center;
}
.litt-full-image img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  border: 1.5px solid var(--lf-border);
  box-shadow: 0 4px 18px var(--lf-shadow);
  background: #fff;
}
.litt-full-image figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--lf-text-light);
  font-style: italic;
}

.litt-double-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.litt-double-image figure {
  margin: 0;
}
.litt-double-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1.5px solid var(--lf-border);
  box-shadow: 0 4px 18px var(--lf-shadow);
  background: #fff;
}

.litt-text-below {
  max-width: 800px;
  margin: 24px auto 0;
}
.litt-text-below p {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.7;
  margin-bottom: 1em;
}
.litt-text-below p:last-child {
  margin-bottom: 0;
}

.litt-carousel-title {
  font-family: "Panchang", sans-serif;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  font-weight: 500;
  color: var(--lf-text);
  text-align: center;
  margin: 32px 0 20px;
}

.book-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.book-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--lf-teal);
  background: transparent;
  color: var(--lf-teal);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.book-arrow:hover {
  background: var(--lf-teal);
  color: #fff;
}
.book-arrow:active {
  transform: scale(0.94);
}

.book-pages {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3/4;
  perspective: 1400px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 6px 30px var(--lf-shadow);
  background: #eee;
}

.book-page {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  transform-origin: left center;
  transform: perspective(1400px) rotateY(0deg);
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.book-page.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
  transform: perspective(1400px) rotateY(0deg);
}
.book-page.flip-out {
  opacity: 1;
  z-index: 3;
  transform: perspective(1400px) rotateY(-180deg);
}
.book-page.flip-in {
  opacity: 1;
  z-index: 2;
  transform: perspective(1400px) rotateY(0deg);
}
.book-page img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}

@media (max-width: 780px) {
  .litt-page {
    padding: 0 16px 40px;
  }
  .litt-book {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .litt-book-cover img {
    max-width: 300px;
    margin: 0 auto;
  }
  .book-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}
@media (max-width: 560px) {
  .litt-section {
    margin-bottom: 40px;
  }
  .litt-double-image {
    grid-template-columns: 1fr;
  }
  .litt-book-cover img {
    max-width: 220px;
  }
  .book-pages {
    max-width: 100%;
  }
  .book-arrow {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .litt-text-below {
    margin-top: 16px;
  }
  .litt-text-below p {
    font-size: 0.88rem;
  }
  .litt-book-text p {
    font-size: 0.88rem;
  }
}
.autour-page {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.autour-intro {
  text-align: center;
  margin-bottom: 56px;
}

.autour-logo-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--lf-bg);
  border-radius: 12px;
  padding: 32px 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px var(--lf-shadow);
  border: 1.5px solid var(--lf-border);
}

.autour-logo-img {
  width: 120px;
  height: auto;
}

.autour-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.autour-logo-name {
  width: 180px;
  height: auto;
}

.autour-logo-sub {
  width: 120px;
  height: auto;
}

.autour-intro-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.autour-intro-text p {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.7;
  margin-bottom: 1em;
}
.autour-intro-text p:last-child {
  margin-bottom: 0;
}

.autour-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--lf-border);
}

.autour-card-photo {
  margin: 0;
}
.autour-card-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 18px var(--lf-shadow);
  background: #fff;
}

.autour-card-content {
  text-align: left;
}
.autour-card-content p {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.7;
  margin-bottom: 0.8em;
}
.autour-card-content p:last-child {
  margin-bottom: 0;
}

.autour-card-name {
  font-family: "Panchang", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--lf-text);
  margin-bottom: 2px;
  line-height: 1.2;
}

.autour-card-dates {
  font-family: "Panchang", sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  color: var(--lf-text);
  margin-bottom: 16px !important;
}

.autour-card--reverse {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}
.autour-card--reverse .autour-card-photo {
  order: 2;
}
.autour-card--reverse .autour-card-content {
  order: 1;
  text-align: right;
}

@media (max-width: 780px) {
  .autour-page {
    padding: 0 16px 40px;
  }
  .autour-card,
  .autour-card--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .autour-card-photo img {
    max-width: 280px;
    margin: 0 auto;
  }
  .autour-card--reverse .autour-card-photo {
    order: 0;
  }
  .autour-card--reverse .autour-card-content {
    order: 0;
    text-align: left;
  }
  .autour-card-name {
    text-align: center;
  }
  .autour-card-dates {
    text-align: center;
  }
  .autour-logo-card {
    padding: 24px 28px;
  }
}
@media (max-width: 560px) {
  .autour-card-photo img {
    max-width: 200px;
  }
  .autour-card-content p {
    font-size: 0.88rem;
  }
  .autour-intro-text p {
    font-size: 0.88rem;
  }
  .autour-logo-img {
    width: 80px;
  }
  .autour-logo-name {
    width: 140px;
  }
  .autour-logo-sub {
    width: 90px;
  }
}
.balade-page {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.balade-intro {
  margin-bottom: 40px;
}

.balade-quote-block {
  max-width: 800px;
  margin: 24px auto;
  text-align: left;
}
.balade-quote-block p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--lf-text);
  line-height: 1.7;
  margin-bottom: 0.5em;
}
.balade-quote-block cite {
  display: block;
  font-size: 0.85rem;
  color: var(--lf-text-light);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

.balade-intro-text {
  max-width: 800px;
  margin: 24px auto 0;
}
.balade-intro-text p {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.7;
  margin-bottom: 1em;
}

.balade-subtitle {
  font-family: "Panchang", sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--lf-text);
  text-align: center;
  margin-bottom: 48px;
}

.balade-stop {
  position: relative;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--lf-border);
  padding-left: 48px;
  padding-right: 48px;
  min-height: 500px;
}

.balade-stop-title {
  position: absolute;
  top: 0;
  writing-mode: vertical-rl;
  font-family: "Panchang", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--lf-text);
  letter-spacing: 0.01em;
  white-space: nowrap;
  z-index: 1;
}

.balade-stop-title--left {
  left: -8px;
  transform: rotate(180deg);
}

.balade-stop-title--right {
  right: -8px;
}

.balade-stop-body {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 32px;
  align-items: start;
}

.balade-stop-body--reverse {
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}
.balade-stop-body--reverse .balade-stop-photo,
.balade-stop-body--reverse .balade-stop-photos-stack,
.balade-stop-body--reverse .balade-stop-photos-grid {
  order: 2;
}
.balade-stop-body--reverse .balade-stop-content {
  order: 1;
  text-align: right;
}

.balade-stop-photo {
  margin: 0;
  position: relative;
}
.balade-stop-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 18px var(--lf-shadow);
  background: #fff;
}

.balade-stop-photo--overlay {
  position: relative;
}
.balade-stop-photo--overlay .balade-quote--overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: 36%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(3px);
  padding: 8px 10px;
  border-radius: 4px;
}
.balade-stop-photo--overlay .balade-quote--overlay p {
  font-size: 0.65rem;
  line-height: 1.35;
}

.balade-stop-photos-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.balade-stop-photos-stack figure {
  margin: 0;
}
.balade-stop-photos-stack img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 18px var(--lf-shadow);
  background: #fff;
}
.balade-stop-photos-stack figcaption {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--lf-text-light);
  font-style: italic;
  text-align: center;
}

.balade-stop-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.balade-stop-photos-grid figure {
  margin: 0;
}
.balade-stop-photos-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 3px 12px var(--lf-shadow);
  background: #fff;
}
.balade-stop-photos-grid figcaption {
  margin-top: 4px;
  font-size: 0.7rem;
  color: var(--lf-text-light);
  font-style: italic;
  text-align: center;
}

.balade-stop-content p {
  font-size: 0.92rem;
  color: var(--lf-text);
  line-height: 1.7;
  margin-bottom: 0.8em;
}
.balade-stop-content p:last-child {
  margin-bottom: 0;
}

.balade-quote {
  margin-bottom: 16px;
}
.balade-quote p {
  font-weight: 700;
  font-style: italic;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: var(--lf-text) !important;
}

@media (max-width: 900px) {
  .balade-stop {
    padding-left: 40px;
    padding-right: 40px;
  }
  .balade-stop-title {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
  }
}
@media (max-width: 780px) {
  .balade-page {
    padding: 0 16px 40px;
  }
  .balade-stop {
    padding-left: 32px;
    padding-right: 32px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .balade-stop-body,
  .balade-stop-body--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .balade-stop-body--reverse .balade-stop-photo,
  .balade-stop-body--reverse .balade-stop-photos-stack,
  .balade-stop-body--reverse .balade-stop-photos-grid {
    order: 0;
  }
  .balade-stop-body--reverse .balade-stop-content {
    order: 0;
    text-align: left;
  }
  .balade-stop-photo img {
    max-width: 400px;
    margin: 0 auto;
  }
  .balade-stop-title {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
  }
  .balade-stop-title--left {
    left: -4px;
  }
  .balade-stop-title--right {
    right: -4px;
  }
}
@media (max-width: 560px) {
  .balade-stop {
    padding-left: 24px;
    padding-right: 24px;
  }
  .balade-stop-content p {
    font-size: 0.85rem;
  }
  .balade-quote p {
    font-size: 0.85rem !important;
  }
  .balade-stop-photos-grid {
    grid-template-columns: 1fr;
  }
  .balade-stop-photo img {
    max-width: 100%;
  }
  .balade-intro-text p {
    font-size: 0.88rem;
  }
  .balade-stop-title {
    font-size: 0.85rem;
  }
}
.galerie-page {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.galerie-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}
.galerie-intro p {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.7;
  margin-bottom: 1em;
}

.galerie-intro-cta {
  font-weight: 600;
  font-size: 1rem !important;
  margin-top: 8px;
}

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

.galerie-item {
  margin: 0;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1/1;
}
.galerie-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.galerie-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.galerie-item:hover img {
  transform: scale(1.05);
  opacity: 0.88;
}

@media (max-width: 900px) {
  .galerie-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
}
@media (max-width: 560px) {
  .galerie-page {
    padding: 0 8px 40px;
  }
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }
  .galerie-intro {
    padding: 0 16px;
  }
  .galerie-intro p {
    font-size: 0.88rem;
  }
}
.documents-page {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.documents-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}
.documents-intro p {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.7;
  margin-bottom: 0.8em;
}

.documents-intro-cta {
  font-weight: 600;
  font-size: 1rem !important;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 64px;
}

.documents-item {
  margin: 0;
  overflow: hidden;
  background: #f0ede8;
}
.documents-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.documents-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.documents-item:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

.documents-carousel-title {
  font-family: "Panchang", sans-serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--lf-text);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.4;
}

.documents-carousel-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.documents-carousel-caption {
  text-align: center;
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.5;
  margin-top: 20px;
  min-height: 1.5em;
  transition: opacity 0.3s ease;
}

@media (max-width: 900px) {
  .documents-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .documents-page {
    padding: 0 8px 40px;
  }
  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .documents-intro {
    padding: 0 16px;
  }
  .documents-intro p {
    font-size: 0.88rem;
  }
}
.asso-page {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.asso-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}
.asso-intro p {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.7;
  margin-bottom: 0.8em;
}

.asso-intro-cta {
  font-weight: 600;
  font-size: 1rem !important;
}

.asso-photos {
  max-width: 900px;
  margin: 0 auto 48px;
}

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

.asso-photo {
  margin: 0;
  overflow: hidden;
}
.asso-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/4;
}

.asso-content {
  max-width: 800px;
  margin: 0 auto;
}

.asso-text {
  margin-bottom: 32px;
}
.asso-text p {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.8;
  margin-bottom: 0.6em;
  text-align: left;
}

@media (max-width: 700px) {
  .asso-page {
    padding: 0 16px 40px;
  }
  .asso-photos-grid {
    gap: 12px;
  }
  .asso-intro {
    padding: 0 8px;
  }
  .asso-intro p {
    font-size: 0.88rem;
  }
  .asso-text p {
    font-size: 0.88rem;
  }
}
@media (max-width: 480px) {
  .asso-photos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 300px;
    margin: 0 auto;
  }
}
.pub-page {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.pub-links {
  max-width: 700px;
  margin: 0 auto;
}

.pub-link-block {
  margin-bottom: 32px;
}
.pub-link-block p {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.5;
  margin-bottom: 2px;
}
.pub-link-block a {
  font-size: 0.9rem;
  color: var(--lf-text);
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.2s ease;
}
.pub-link-block a:hover {
  color: var(--lf-teal);
}

@media (max-width: 480px) {
  .pub-page {
    padding: 0 16px 40px;
  }
  .pub-link-block p {
    font-size: 0.88rem;
  }
  .pub-link-block a {
    font-size: 0.82rem;
  }
}
.error-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  text-align: center;
}

.error-title {
  text-align: center;
  font-family: "Panchang", sans-serif;
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--lf-text);
  text-transform: uppercase;
  margin-bottom: 48px;
  line-height: 1.2;
}

.error-body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
  align-items: center;
  text-align: left;
  margin-bottom: 56px;
}

.error-photo {
  margin: 0;
}
.error-photo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.error-text p {
  font-size: 0.95rem;
  color: var(--lf-text);
  line-height: 1.7;
  margin-bottom: 1em;
}

.error-action {
  text-align: center;
}

.error-btn {
  display: inline-block;
  font-family: "Panchang", sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: #5b8fc9;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.15s ease;
}
.error-btn:hover {
  background: #4678b0;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .error-body {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .error-photo {
    max-width: 260px;
    margin: 0 auto;
  }
  .error-page {
    padding: 24px 16px 60px;
  }
  .error-btn {
    padding: 14px 36px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}/*# sourceMappingURL=style.css.map */