@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

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

body {
  background-color: #EEF3EF;
  color: #2B4239;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 72px;
}

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: #1A3828;
}

p {
  color: #2B4239;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #E5EFE8;
  color: #3C6B4E;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 100px;
}

.prose a {
  color: #3C6B4E;
  text-decoration: underline;
  text-decoration-color: rgba(60, 107, 78, 0.4);
}
.prose a:hover {
  text-decoration-color: #3C6B4E;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1139px) {
  h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
  }
  h2 {
    font-size: clamp(1.625rem, 3vw, 2.5rem);
  }
  h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
  }
  .container {
    padding: 0 1rem;
  }
  .container--narrow {
    max-width: 800px;
  }
  .section {
    padding: 4rem 0;
  }
  .section--light {
    background-color: #F5F9F5;
  }
  .section--white {
    background-color: #FFFFFF;
  }
  .section--dark {
    background-color: #152E22;
  }
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #E5EFE8;
    color: #3C6B4E;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    border: 1px solid #D4E4D8;
    letter-spacing: 0.01em;
  }
  .overline {
    display: inline-block;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #3C6B4E;
    margin-bottom: 0.75rem;
  }
  .section-header {
    margin-bottom: 3rem;
  }
  .section-header h2 {
    margin-top: 0.25rem;
  }
  .section-header--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section-header__sub {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #7A9A85;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
  }
  .btn--primary {
    background: #1A3828;
    color: #FFFFFF;
  }
  .btn--primary:hover {
    background: #3C6B4E;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 56, 40, 0.25);
  }
  .btn--green {
    background: #3C6B4E;
    color: #FFFFFF;
  }
  .btn--green:hover {
    background: #1A3828;
    transform: translateY(-1px);
  }
  .btn--ghost {
    background: transparent;
    color: #1A3828;
    border: 1.5px solid #1A3828;
  }
  .btn--ghost:hover {
    background: #1A3828;
    color: #FFFFFF;
  }
  .btn--ghost-light {
    background: transparent;
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
  }
  .btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
  }
  .btn--outline {
    background: transparent;
    color: #3C6B4E;
    border: 1.5px solid #D4E4D8;
  }
  .btn--outline:hover {
    border-color: #3C6B4E;
    background: #E5EFE8;
  }
  .btn--light {
    background: #FFFFFF;
    color: #1A3828;
  }
  .btn--light:hover {
    background: #E5EFE8;
  }
  .btn--icon {
    padding: 0.7rem;
    border-radius: 50%;
    background: #3C6B4E;
    color: #FFFFFF;
    width: 44px;
    height: 44px;
    justify-content: center;
  }
  .btn--icon:hover {
    background: #1A3828;
    transform: scale(1.05);
  }
  .page-hero {
    padding: calc(72px + 4rem) 0 4rem;
    background: #EEF3EF;
  }
  .page-hero h1 {
    margin-top: 0.25rem;
  }
  .page-hero__sub {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    color: #7A9A85;
    font-weight: 300;
  }
  .page-hero--contact {
    background: #F5F9F5;
  }
  .text-content {
    margin-bottom: 4rem;
  }
  .text-content h2 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .info-block {
    margin-bottom: 4rem;
  }
  .info-block h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .cta-block {
    background: #E5EFE8;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 4rem;
  }
  .cta-block h2 {
    margin-bottom: 0.75rem;
  }
  .cta-block p {
    margin-bottom: 1.5rem;
  }
  .cta-block .btn {
    margin-right: 1rem;
    margin-top: 0.5rem;
  }
  .plain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .plain-list li {
    padding-left: 1.5rem;
    position: relative;
    color: #2B4239;
  }
  .plain-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #3C6B4E;
  }
  .empty-state {
    text-align: center;
    padding: 6rem 2rem;
  }
  .empty-state__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .empty-state h2 {
    margin-bottom: 0.75rem;
  }
  .prose h2 {
    margin: 2rem 0 1rem;
  }
  .prose h3 {
    margin: 1.5rem 0 0.75rem;
  }
  .prose p {
    margin-bottom: 1.25rem;
  }
}
@media only screen and (min-device-width: 1140px) {
  h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
  }
  h2 {
    font-size: clamp(1.625rem, 3vw, 2.5rem);
  }
  h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
  }
  .container {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .container--narrow {
    max-width: 800px;
  }
  .section {
    padding: 6rem 0;
  }
  .section--light {
    background-color: #F5F9F5;
  }
  .section--white {
    background-color: #FFFFFF;
  }
  .section--dark {
    background-color: #152E22;
  }
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #E5EFE8;
    color: #3C6B4E;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    border: 1px solid #D4E4D8;
    letter-spacing: 0.01em;
  }
  .overline {
    display: inline-block;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #3C6B4E;
    margin-bottom: 0.75rem;
  }
  .section-header {
    margin-bottom: 3rem;
  }
  .section-header h2 {
    margin-top: 0.25rem;
  }
  .section-header--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section-header__sub {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #7A9A85;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
  }
  .btn--primary {
    background: #1A3828;
    color: #FFFFFF;
  }
  .btn--primary:hover {
    background: #3C6B4E;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 56, 40, 0.25);
  }
  .btn--green {
    background: #3C6B4E;
    color: #FFFFFF;
  }
  .btn--green:hover {
    background: #1A3828;
    transform: translateY(-1px);
  }
  .btn--ghost {
    background: transparent;
    color: #1A3828;
    border: 1.5px solid #1A3828;
  }
  .btn--ghost:hover {
    background: #1A3828;
    color: #FFFFFF;
  }
  .btn--ghost-light {
    background: transparent;
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
  }
  .btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
  }
  .btn--outline {
    background: transparent;
    color: #3C6B4E;
    border: 1.5px solid #D4E4D8;
  }
  .btn--outline:hover {
    border-color: #3C6B4E;
    background: #E5EFE8;
  }
  .btn--light {
    background: #FFFFFF;
    color: #1A3828;
  }
  .btn--light:hover {
    background: #E5EFE8;
  }
  .btn--icon {
    padding: 0.7rem;
    border-radius: 50%;
    background: #3C6B4E;
    color: #FFFFFF;
    width: 44px;
    height: 44px;
    justify-content: center;
  }
  .btn--icon:hover {
    background: #1A3828;
    transform: scale(1.05);
  }
  .page-hero {
    padding: calc(72px + 4rem) 0 4rem;
    background: #EEF3EF;
  }
  .page-hero h1 {
    margin-top: 0.25rem;
  }
  .page-hero__sub {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    color: #7A9A85;
    font-weight: 300;
  }
  .page-hero--contact {
    background: #F5F9F5;
  }
  .text-content {
    margin-bottom: 4rem;
  }
  .text-content h2 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .info-block {
    margin-bottom: 4rem;
  }
  .info-block h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .cta-block {
    background: #E5EFE8;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 4rem;
  }
  .cta-block h2 {
    margin-bottom: 0.75rem;
  }
  .cta-block p {
    margin-bottom: 1.5rem;
  }
  .cta-block .btn {
    margin-right: 1rem;
    margin-top: 0.5rem;
  }
  .plain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .plain-list li {
    padding-left: 1.5rem;
    position: relative;
    color: #2B4239;
  }
  .plain-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #3C6B4E;
  }
  .empty-state {
    text-align: center;
    padding: 6rem 2rem;
  }
  .empty-state__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .empty-state h2 {
    margin-bottom: 0.75rem;
  }
  .prose h2 {
    margin: 2rem 0 1rem;
  }
  .prose h3 {
    margin: 1.5rem 0 0.75rem;
  }
  .prose p {
    margin-bottom: 1.25rem;
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  height: 72px;
  transition: box-shadow 0.3s ease;
}
.nav.is-scrolled {
  box-shadow: 0 1px 0 #D4E4D8, 0 4px 24px rgba(26, 56, 40, 0.06);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 56, 40, 0.35);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 1139px) {
  .nav__inner {
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .nav__logo {
    display: flex;
    align-items: center;
  }
  .nav__logo img {
    width: 140px;
    height: auto;
  }
  .nav__links {
    display: none;
  }
  .nav__cta-link {
    display: none;
  }
  .nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .nav__hamburger:hover {
    background: #E5EFE8;
  }
  .nav__hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #1A3828;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  }
  .nav__hamburger.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav__hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .nav__hamburger.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .nav__mobile {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: #FFFFFF;
    border-left: 1px solid #D4E4D8;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }
  .nav__mobile.is-open {
    transform: translateX(0);
  }
  .nav__mobile-link {
    font-size: 1.0625rem;
    font-weight: 400;
    color: #2B4239;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s;
  }
  .nav__mobile-link:hover {
    background: #E5EFE8;
    color: #1A3828;
  }
  .nav__mobile-link--sub {
    font-size: 0.9375rem;
    padding: 0.625rem 1rem 0.625rem 1.75rem;
    color: #7A9A85;
  }
  .nav__mobile-link--sub:hover {
    color: #1A3828;
  }
  .nav__mobile-link--cta {
    margin-top: 1rem;
    background: #1A3828;
    color: #FFFFFF;
    text-align: center;
    font-weight: 500;
  }
  .nav__mobile-link--cta:hover {
    background: #3C6B4E;
  }
  .nav__mobile-group {
    display: flex;
    flex-direction: column;
  }
  .nav__mobile-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.0625rem;
    font-weight: 400;
    color: #2B4239;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .nav__mobile-group-toggle:hover {
    background: #E5EFE8;
    color: #1A3828;
  }
  .nav__mobile-group-toggle.is-open {
    color: #1A3828;
    background: #E5EFE8;
    font-weight: 500;
  }
  .nav__mobile-group-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
    flex-shrink: 0;
  }
  .nav__mobile-group-toggle.is-open svg {
    transform: rotate(180deg);
  }
  .nav__mobile-group-items {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding-left: 0.5rem;
    border-left: 2px solid #E5EFE8;
    margin: 0.25rem 0 0.25rem 1rem;
  }
}
@media only screen and (min-device-width: 1140px) {
  .nav__inner {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .nav__logo {
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.4s;
  }
  .nav__logo img {
    height: auto;
    width: 140px;
  }
  .nav__logo:hover {
    transform: scale(1.05);
  }
  .nav__links {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    flex: 1;
    justify-content: center;
  }
  .nav__link {
    font-size: 0.9rem;
    font-weight: 400;
    color: #2B4239;
    padding: 0.4rem 0.875rem;
    border-radius: 100px;
    transition: background 0.2s, color 0.2s;
  }
  .nav__link:hover {
    background: #E5EFE8;
    color: #1A3828;
  }
  .nav__link.active {
    background: #E5EFE8;
    color: #1A3828;
    font-weight: 500;
  }
  .nav__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1A3828;
    border: 1.5px solid #1A3828;
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  }
  .nav__cta-link::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231A3828' stroke-width='1.75' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 002.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 01-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 00-1.091-.852H4.5A2.25 2.25 0 002.25 4.5v2.25z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .nav__cta-link:hover {
    background: #1A3828;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(26, 56, 40, 0.2);
  }
  .nav__cta-link:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.75' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 002.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 01-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 00-1.091-.852H4.5A2.25 2.25 0 002.25 4.5v2.25z'/%3E%3C/svg%3E");
  }
  .nav__hamburger {
    display: none;
  }
  .nav__mobile {
    display: none;
  }
}
@media (max-width: 1139px) {
  .footer {
    background: #FFFFFF;
    border-top: 1px solid #D4E4D8;
    padding-top: 4rem;
  }
  .footer__top {
    padding: 0 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid #D4E4D8;
    flex-wrap: wrap;
  }
  .footer__logo {
    display: flex;
    align-items: center;
  }
  .footer__logo img {
    width: 120px;
    height: auto;
  }
  .footer__top-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .footer__top-nav a {
    font-size: 0.9rem;
    color: #2B4239;
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    transition: background 0.2s, color 0.2s;
  }
  .footer__top-nav a:hover {
    background: #E5EFE8;
    color: #1A3828;
  }
  .footer__grid {
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__heading {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #1A3828;
    margin-bottom: 1.25rem;
  }
  .footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #2B4239;
    transition: color 0.2s;
    margin: 0;
  }
  .footer__contact-item:hover {
    color: #3C6B4E;
  }
  .footer__tagline {
    font-size: 1.125rem;
    font-weight: 400;
    color: #2B4239;
    line-height: 1.6;
    font-family: "EB Garamond", Georgia, serif;
    font-style: italic;
    margin-bottom: 0.5rem;
  }
  .footer__ntf {
    font-size: 0.8125rem;
    color: #7A9A85;
    margin-top: 0.75rem;
    line-height: 1.6;
  }
  .footer__ntf strong {
    color: #1A3828;
    font-weight: 500;
  }
  .footer__form-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .footer__form-success {
    font-size: 0.875rem;
    font-weight: 500;
    color: #3C6B4E;
    padding: 0.75rem 0;
    line-height: 1.5;
  }
  .footer__mini-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer__mini-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .footer__mini-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D4E4D8;
    border-radius: 12px;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.875rem;
    color: #1A3828;
    background: #EEF3EF;
    outline: none;
    transition: border-color 0.2s;
  }
  .footer__mini-input::-moz-placeholder {
    color: #7A9A85;
  }
  .footer__mini-input::placeholder {
    color: #7A9A85;
  }
  .footer__mini-input:focus {
    border-color: #3C6B4E;
  }
  .footer__mini-submit-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }
  .footer__mini-select {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #D4E4D8;
    border-radius: 12px;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.875rem;
    color: #7A9A85;
    background: #EEF3EF;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
  }
  .footer__mini-select:focus {
    border-color: #3C6B4E;
    color: #1A3828;
  }
  .footer__mini-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #3C6B4E;
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-size: 1.1rem;
    font-weight: 600;
  }
  .footer__mini-btn:hover {
    background: #1A3828;
    transform: scale(1.05);
  }
  .footer__bottom {
    border-top: 1px solid #D4E4D8;
    padding: 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .footer__bottom p {
    font-size: 0.8125rem;
    color: #7A9A85;
    margin: 0;
  }
}
@media only screen and (min-device-width: 1140px) {
  .footer {
    background: #FFFFFF;
    border-top: 1px solid #D4E4D8;
    padding-top: 4rem;
  }
  .footer__top {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid #D4E4D8;
    flex-wrap: wrap;
  }
  .footer__logo {
    display: flex;
    align-items: center;
  }
  .footer__logo img {
    width: 120px;
    height: auto;
  }
  .footer__top-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .footer__top-nav a {
    font-size: 0.9rem;
    color: #2B4239;
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    transition: background 0.2s, color 0.2s;
  }
  .footer__top-nav a:hover {
    background: #E5EFE8;
    color: #1A3828;
  }
  .footer__grid {
    max-width: 1390px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 4rem;
  }
  .footer__heading {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #1A3828;
    margin-bottom: 1.25rem;
  }
  .footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #2B4239;
    transition: color 0.2s;
    margin: 0;
  }
  .footer__contact-item:hover {
    color: #3C6B4E;
  }
  .footer__tagline {
    font-size: 1.125rem;
    font-weight: 400;
    color: #2B4239;
    line-height: 1.6;
    font-family: "EB Garamond", Georgia, serif;
    font-style: italic;
    margin-bottom: 0.5rem;
  }
  .footer__ntf {
    font-size: 0.8125rem;
    color: #7A9A85;
    margin-top: 0.75rem;
    line-height: 1.6;
  }
  .footer__ntf strong {
    color: #1A3828;
    font-weight: 500;
  }
  .footer__form-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .footer__form-success {
    font-size: 0.875rem;
    font-weight: 500;
    color: #3C6B4E;
    padding: 0.75rem 0;
    line-height: 1.5;
  }
  .footer__mini-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer__mini-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .footer__mini-input {
    width: 100%;
    padding: 17px 1rem;
    border: 1px solid #D4E4D8;
    border-radius: 12px;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.875rem;
    color: #1A3828;
    background: #EEF3EF;
    outline: none;
    transition: border-color 0.2s;
  }
  .footer__mini-input::-moz-placeholder {
    color: #7A9A85;
  }
  .footer__mini-input::placeholder {
    color: #7A9A85;
  }
  .footer__mini-input:focus {
    border-color: #3C6B4E;
  }
  .footer__mini-submit-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 10px;
  }
  .footer__mini-select {
    flex: 1;
    padding: 17px 1rem;
    border: 1px solid #D4E4D8;
    border-radius: 12px;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.875rem;
    color: #7A9A85;
    background: #EEF3EF;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
  }
  .footer__mini-select:focus {
    border-color: #3C6B4E;
    color: #1A3828;
  }
  .footer__mini-btn {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background: #3C6B4E;
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-size: 1.1rem;
    font-weight: 600;
  }
  .footer__mini-btn:hover {
    background: #1A3828;
    transform: scale(1.05);
  }
  .footer__bottom {
    border-top: 1px solid #D4E4D8;
    padding: 1.25rem 2rem;
    max-width: 1390px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .footer__bottom p {
    font-size: 0.8125rem;
    color: #7A9A85;
    margin: 0;
  }
}
@media (max-width: 1139px) {
  .hero {
    padding: 1rem 1rem 1rem;
  }
  .hero__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    background-image: url("/static/images/main.png");
    background-size: cover;
    background-position: center;
  }
  .hero__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(21, 46, 34, 0.75) 0%, rgba(21, 46, 34, 0.4) 55%, transparent 85%);
    z-index: 1;
  }
  .hero__content {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem;
    max-width: 600px;
    color: #FFFFFF;
  }
  .hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 0.5rem 1.125rem 0.5rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
    transition: background 0.2s;
  }
  .hero__pill:hover {
    background: rgba(255, 255, 255, 0.25);
  }
  .hero__pill-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #3C6B4E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
  }
  .hero__title {
    font-family: "EB Garamond", Georgia, serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  .hero__title .accent {
    color: rgba(255, 255, 255, 0.65);
  }
  .hero__desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 460px;
  }
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .hero__badge {
    display: none;
  }
  .mission {
    background: #FFFFFF;
    text-align: center;
    padding: 4rem 1rem;
  }
  .mission__inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .mission__heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.25;
    color: #1A3828;
    margin: 0;
  }
  .mission__stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #7A9A85;
  }
  .mission__stars .stars {
    color: #E8A838;
    font-size: 1rem;
    letter-spacing: 1px;
  }
  .mission__stars strong {
    color: #1A3828;
  }
  .services {
    background: #EEF3EF;
    padding: 0 1rem 4rem;
  }
  .services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
  }
  .service-card:nth-child(1) {
    background-image: url("https://framerusercontent.com/images/ayK8WRiBuTMxABXtyh6P3QbTEuE.jpg?scale-down-to=2048&width=2662&height=1776");
  }
  .service-card:nth-child(2) {
    background-image: url("https://www.karlnydal.no/services/1.jpg");
  }
  .service-card:nth-child(3) {
    background-image: url("https://sunnidrett.no/wp-content/uploads/2020/03/foredrag-mellommat-CB-1400x620.jpg");
  }
  .service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 46, 34, 0.9) 0%, transparent 50%);
  }
  .service-card:hover .service-card__arrow {
    background: #1A3828;
    transform: scale(1.05);
  }
  .service-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }
  .service-card__name {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.3;
  }
  .service-card__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3C6B4E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.25s, transform 0.25s;
  }
  .sessions {
    background: #FFFFFF;
    padding: 4rem 0;
  }
  .sessions__header {
    margin-bottom: 2.5rem;
  }
  .sessions__header .badge {
    margin-top: 15px;
  }
  .sessions__list {
    border-top: 1px solid #D4E4D8;
  }
  .session-item {
    display: grid;
    grid-template-columns: 48px 1fr 44px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #D4E4D8;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
  }
  .session-item:hover {
    background: #EEF3EF;
    border-radius: 12px;
  }
  .session-item__price, .session-item__bonus {
    display: none;
  }
  .session-item__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1;
  }
  .session-item__day {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7A9A85;
  }
  .session-item__num {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1A3828;
    line-height: 1.1;
  }
  .session-item__info h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #1A3828;
    margin-bottom: 0.2rem;
  }
  .session-item__info span {
    font-size: 0.8125rem;
    color: #7A9A85;
  }
  .session-item__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #3C6B4E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }
  .session-item__arrow:hover {
    background: #1A3828;
    transform: scale(1.05);
  }
  .dark-feature {
    background: #EEF3EF;
    padding: 0 1rem 4rem;
  }
  .dark-feature__card {
    background: #152E22;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .dark-feature__heading {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: #FFFFFF;
    max-width: 680px;
    margin: 0 auto 3rem;
    line-height: 1.2;
  }
  .dark-feature__heading .accent {
    color: #6B9E7E;
  }
  .feature-wheel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0 2.5rem;
  }
  .feature-wheel__center {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.4;
    padding: 1rem;
  }
  .feature-wheel__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
  }
  .feature-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 0.5rem 1.125rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s;
  }
  .feature-pill:hover {
    background: rgba(255, 255, 255, 0.18);
  }
  .testimonials {
    background: #EEF3EF;
    padding: 0 0 4rem;
  }
  .testimonials__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    border: 1px solid #D4E4D8;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(26, 56, 40, 0.08);
    transform: translateY(-2px);
  }
  .testimonial-card__stars {
    color: #E8A838;
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  .testimonial-card__title {
    font-size: 1rem;
    font-weight: 500;
    color: #1A3828;
    font-family: "EB Garamond", Georgia, serif;
    line-height: 1.4;
    margin: 0;
  }
  .testimonial-card__text {
    font-size: 0.9rem;
    color: #7A9A85;
    line-height: 1.65;
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #D4E4D8;
  }
  .testimonial-card__author .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #E5EFE8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #3C6B4E;
    flex-shrink: 0;
  }
  .testimonial-card__author .name {
    font-weight: 500;
    font-size: 0.875rem;
    color: #1A3828;
  }
  .testimonial-card__author .role {
    font-size: 0.8rem;
    color: #7A9A85;
  }
  .cta-card {
    background: #EEF3EF;
    padding: 0 1rem 4rem;
  }
  .cta-card__inner {
    background: #152E22;
    border-radius: 20px;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  .cta-card__text .badge {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
  }
  .cta-card__text h2 {
    color: #FFFFFF;
    margin: 0.75rem 0 1rem;
  }
  .cta-card__text p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
  }
  .cta-card__visual {
    display: none;
  }
  .blog-preview {
    background: #EEF3EF;
    padding: 0 0 4rem;
  }
  .blog-preview__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .blog-preview__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .blog-preview-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #D4E4D8;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .blog-preview-card:hover {
    box-shadow: 0 8px 32px rgba(26, 56, 40, 0.08);
    transform: translateY(-3px);
  }
  .blog-preview-card__image {
    aspect-ratio: 16/9;
  }
  .blog-preview-card__image--1 {
    background: #1E4A30;
  }
  .blog-preview-card__image--2 {
    background: #152E22;
  }
  .blog-preview-card__image--3 {
    background: #243D2E;
  }
  .blog-preview-card__body {
    padding: 1.25rem;
  }
  .blog-preview-card__tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #3C6B4E;
    margin-bottom: 0.5rem;
  }
  .blog-preview-card__title {
    font-size: 1rem;
    font-weight: 500;
    color: #1A3828;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .blog-preview-card__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #3C6B4E;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s;
  }
  .blog-preview-card__link:hover {
    gap: 0.5rem;
  }
}
@media only screen and (min-device-width: 1140px) {
  .hero {
    padding: 1rem 2rem 2rem;
    background: white;
    padding-top: 25px;
  }
  .hero__card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 570px;
    display: flex;
    align-items: center;
    max-width: 1390px;
    margin: 0 auto;
    background-image: url("/static/images/main.png");
    background-size: cover;
    background-position: 120px -70px;
  }
  .hero__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(21, 46, 34, 0.75) 0%, rgba(21, 46, 34, 0.4) 55%, transparent 85%);
    z-index: 1;
  }
  .hero__content {
    position: relative;
    z-index: 2;
    padding: 3.5rem;
    max-width: 600px;
    color: #FFFFFF;
  }
  .hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 0.5rem 1.125rem 0.5rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
    transition: background 0.2s;
  }
  .hero__pill:hover {
    background: rgba(255, 255, 255, 0.25);
  }
  .hero__pill-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #3C6B4E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
  }
  .hero__title {
    font-family: "EB Garamond", Georgia, serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  .hero__title .accent {
    color: rgba(255, 255, 255, 0.65);
  }
  .hero__desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 460px;
  }
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .hero__badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
  }
  .mission {
    background: #FFFFFF;
    text-align: center;
    padding: 6rem 2rem;
  }
  .mission__inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .mission__heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.25;
    color: #1A3828;
    margin: 0;
  }
  .mission__stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #7A9A85;
  }
  .mission__stars .stars {
    color: #E8A838;
    font-size: 1rem;
    letter-spacing: 1px;
  }
  .mission__stars strong {
    color: #1A3828;
  }
  .services {
    background: #EEF3EF;
    padding: 75px;
  }
  .services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1390px;
    margin: 0 auto;
  }
  .service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background-image: url("https://framerusercontent.com/images/ayK8WRiBuTMxABXtyh6P3QbTEuE.jpg?scale-down-to=2048&width=2662&height=1776");
    background-size: cover;
    background-position: center center;
  }
  .service-card:nth-child(1) {
    background-image: url("https://framerusercontent.com/images/ayK8WRiBuTMxABXtyh6P3QbTEuE.jpg?scale-down-to=2048&width=2662&height=1776");
  }
  .service-card:nth-child(2) {
    background-image: url("https://www.karlnydal.no/services/1.jpg");
  }
  .service-card:nth-child(3) {
    background-image: url("https://sunnidrett.no/wp-content/uploads/2020/03/foredrag-mellommat-CB-1400x620.jpg");
  }
  .service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 46, 34, 0.9) 0%, transparent 50%);
  }
  .service-card:hover .service-card__arrow {
    background: #1A3828;
    transform: scale(1.05);
  }
  .service-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }
  .service-card__name {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.3;
  }
  .service-card__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3C6B4E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.25s, transform 0.25s;
  }
  .sessions {
    background: #FFFFFF;
    padding: 6rem 0;
  }
  .sessions__header {
    margin-bottom: 2.5rem;
  }
  .sessions__header .badge {
    margin-top: 35px;
  }
  .sessions__list {
    border-top: 1px solid #D4E4D8;
  }
  .session-item {
    display: grid;
    grid-template-columns: 64px 1fr auto auto auto 44px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #D4E4D8;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
  }
  .session-item:hover {
    background: #EEF3EF;
    border-radius: 12px;
  }
  .session-item__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1;
  }
  .session-item__day {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7A9A85;
  }
  .session-item__num {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1A3828;
    line-height: 1.1;
  }
  .session-item__info h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #1A3828;
    margin-bottom: 0.2rem;
  }
  .session-item__info span {
    font-size: 0.8125rem;
    color: #7A9A85;
  }
  .session-item__price, .session-item__bonus {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
  .session-item__price .label, .session-item__bonus .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7A9A85;
  }
  .session-item__price strong, .session-item__bonus strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1A3828;
  }
  .session-item__bonus strong {
    font-size: 0.875rem;
    color: #3C6B4E;
  }
  .session-item__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #3C6B4E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }
  .session-item__arrow:hover {
    background: #1A3828;
    transform: scale(1.05);
  }
  .dark-feature {
    background: white;
    padding: 0 2rem 6rem;
  }
  .dark-feature__card {
    background: #203f2f;
    border-radius: 28px;
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1390px;
    margin: 0 auto;
  }
  .dark-feature__heading {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: #FFFFFF;
    max-width: 680px;
    margin: 0 auto 3rem;
    line-height: 1.2;
  }
  .dark-feature__heading .accent {
    color: #6B9E7E;
  }
  .feature-wheel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0 2.5rem;
  }
  .feature-wheel__center {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.4;
    padding: 1rem;
  }
  .feature-wheel__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
  }
  .feature-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 0.5rem 1.125rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s;
  }
  .feature-pill:hover {
    background: rgba(255, 255, 255, 0.18);
  }
  .testimonials {
    background: #EEF3EF;
    padding: 0 0 6rem;
  }
  .testimonials__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    border: 1px solid #D4E4D8;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(26, 56, 40, 0.08);
    transform: translateY(-2px);
  }
  .testimonial-card__stars {
    color: #E8A838;
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  .testimonial-card__title {
    font-size: 1rem;
    font-weight: 500;
    color: #1A3828;
    font-family: "EB Garamond", Georgia, serif;
    line-height: 1.4;
    margin: 0;
  }
  .testimonial-card__text {
    font-size: 0.9rem;
    color: #7A9A85;
    line-height: 1.65;
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #D4E4D8;
  }
  .testimonial-card__author .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #E5EFE8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #3C6B4E;
    flex-shrink: 0;
  }
  .testimonial-card__author .name {
    font-weight: 500;
    font-size: 0.875rem;
    color: #1A3828;
  }
  .testimonial-card__author .role {
    font-size: 0.8rem;
    color: #7A9A85;
  }
  .cta-card {
    background: #EEF3EF;
    padding: 0 2rem 6rem;
    padding-top: 65px;
  }
  .cta-card__inner {
    background: #152E22;
    border-radius: 28px;
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: hidden;
    position: relative;
    max-width: 1390px;
    margin: 0 auto;
  }
  .cta-card__text .badge {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
  }
  .cta-card__text h2 {
    color: #FFFFFF;
    margin: 0.75rem 0 1rem;
  }
  .cta-card__text p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
  }
  .cta-card__visual {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 360px;
    margin-left: auto;
  }
  .cta-card__stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    width: calc(50% - 10px);
    min-width: 110px;
  }
  .cta-card__stat strong {
    display: block;
    font-family: "EB Garamond", Georgia, serif;
    font-size: 2rem;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .cta-card__stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1;
  }
  .blog-preview {
    background: #EEF3EF;
    padding: 0 0 6rem;
  }
  .blog-preview__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .blog-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .blog-preview-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #D4E4D8;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .blog-preview-card:hover {
    box-shadow: 0 8px 32px rgba(26, 56, 40, 0.08);
    transform: translateY(-3px);
  }
  .blog-preview-card__image {
    aspect-ratio: 16/9;
  }
  .blog-preview-card__image--1 {
    background: #1E4A30;
  }
  .blog-preview-card__image--2 {
    background: #152E22;
  }
  .blog-preview-card__image--3 {
    background: #243D2E;
  }
  .blog-preview-card__body {
    padding: 1.25rem;
  }
  .blog-preview-card__tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #3C6B4E;
    margin-bottom: 0.5rem;
  }
  .blog-preview-card__title {
    font-size: 1rem;
    font-weight: 500;
    color: #1A3828;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .blog-preview-card__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #3C6B4E;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s;
  }
  .blog-preview-card__link:hover {
    gap: 0.5rem;
  }
}
@media (max-width: 1139px) {
  .about-photo {
    margin-bottom: 4rem;
  }
  .about-photo__wrap {
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    background: #F5F9F5;
  }
  .about-photo__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a5c40 0%, #4a9868 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "EB Garamond", Georgia, serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
  }
  .credential-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .credential-list__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #D4E4D8;
    align-items: start;
  }
  .credential-list__item:last-child {
    border-bottom: none;
  }
  .credential-list__item strong {
    display: block;
    color: #1A3828;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  .credential-list__item p {
    font-size: 0.9rem;
    margin: 0;
    color: #7A9A85;
  }
  .credential-list__year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E5EFE8;
    color: #3C6B4E;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    white-space: nowrap;
    align-self: start;
    margin-top: 0.2rem;
  }
}
@media only screen and (min-device-width: 1140px) {
  .about-photo {
    margin-bottom: 4rem;
  }
  .about-photo__wrap {
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    background: #F5F9F5;
  }
  .about-photo__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a5c40 0%, #4a9868 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "EB Garamond", Georgia, serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
  }
  .credential-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .credential-list__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #D4E4D8;
    align-items: start;
  }
  .credential-list__item:last-child {
    border-bottom: none;
  }
  .credential-list__item strong {
    display: block;
    color: #1A3828;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  .credential-list__item p {
    font-size: 0.9rem;
    margin: 0;
    color: #7A9A85;
  }
  .credential-list__year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E5EFE8;
    color: #3C6B4E;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    white-space: nowrap;
    align-self: start;
    margin-top: 0.2rem;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1139px) {
  .contact-section {
    background: #EEF3EF;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .contact-info__block h2 {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .contact-info__block h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(212, 228, 216, 0.6);
    text-decoration: none;
    transition: color 0.2s;
    margin: 0;
  }
  .contact-info__item:last-child {
    border-bottom: none;
  }
  .contact-info__item:hover {
    color: #3C6B4E;
  }
  .contact-info__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: #3C6B4E;
    background: #E5EFE8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    transition: background 0.2s;
  }
  .contact-info__icon svg {
    width: 100%;
    height: 100%;
  }
  .contact-info__item:hover .contact-info__icon {
    background: rgba(60, 107, 78, 0.15);
  }
  .contact-info__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7A9A85;
    margin-bottom: 0.2rem;
  }
  .contact-info__value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #1A3828;
  }
  .contact-info__prices {
    background: #E5EFE8;
    border-radius: 20px;
    padding: 1.5rem;
  }
  .mini-price-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  .mini-price-list__item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #2B4239;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(212, 228, 216, 0.5);
  }
  .mini-price-list__item:last-child {
    border-bottom: none;
  }
  .mini-price-list__item span:last-child {
    font-weight: 600;
    color: #1A3828;
  }
  .mini-price-list__note {
    font-size: 0.8rem;
    color: #7A9A85;
    margin: 0;
  }
  .ntf-badge {
    background: #FFFFFF;
    border-left: 3px solid #3C6B4E;
    padding: 1rem 1.25rem;
    border-radius: 0 12px 12px 0;
  }
  .ntf-badge p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7A9A85;
    margin-bottom: 0.25rem;
  }
  .ntf-badge strong {
    font-size: 0.9rem;
    color: #1A3828;
    font-weight: 600;
  }
  .contact-form-wrap {
    border: none;
    background: transparent;
    padding: 1rem;
  }
  .contact-form__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .contact-form__privacy {
    font-size: 0.8rem;
    color: #7A9A85;
    margin-top: 1.25rem;
    margin-bottom: 0;
    line-height: 1.5;
  }
  .field {
    position: relative;
    margin-bottom: 2.25rem;
  }
  .field input,
  .field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #D4E4D8;
    padding: 0.875rem 0 0.5rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1rem;
    color: #1A3828;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
  }
  .field input::-moz-placeholder, .field textarea::-moz-placeholder {
    color: transparent;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    color: transparent;
  }
  .field textarea {
    padding-top: 1.25rem;
    min-height: 140px;
  }
  .field label {
    position: absolute;
    top: 0.875rem;
    left: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #7A9A85;
    pointer-events: none;
    transition: top 0.25s cubic-bezier(0.22, 1, 0.36, 1), font-size 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
  }
  .field .required {
    color: #3C6B4E;
    font-size: 0.8em;
  }
  .field .optional {
    font-size: 0.8em;
    color: #7A9A85;
    font-weight: 300;
  }
  .field__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3C6B4E;
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .field__error {
    display: block;
    font-size: 0.8rem;
    color: #c0392b;
    margin-top: 0.375rem;
    min-height: 1.1rem;
  }
  .field.is-focused label, .field.is-filled label {
    top: -1.1rem;
    font-size: 0.75rem;
    color: #3C6B4E;
  }
  .field.is-focused .field__line, .field.is-filled .field__line {
    width: 100%;
  }
  .field--textarea label {
    top: 0.5rem;
  }
  .field--textarea.is-focused label, .field--textarea.is-filled label {
    top: -1.1rem;
  }
  .field--hidden {
    position: absolute;
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .btn--submit {
    width: 100%;
    justify-content: center;
    padding: 1.125rem 2rem;
    font-size: 1rem;
    position: relative;
  }
  .btn--submit.is-loading {
    pointer-events: none;
    opacity: 0.8;
  }
  .btn--submit.is-loading .btn__text {
    opacity: 0;
  }
  .btn--submit.is-loading .btn__spinner {
    opacity: 1;
  }
  .btn--submit .btn__text {
    transition: opacity 0.2s;
  }
  .btn--submit .btn__spinner {
    position: absolute;
    width: 24px;
    height: 24px;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .btn--submit .btn__spinner svg {
    width: 100%;
    height: 100%;
    animation: spin 0.9s linear infinite;
  }
  .form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    gap: 1rem;
    animation: fade-in-up 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .form-success__icon {
    width: 64px;
    height: 64px;
    color: #3C6B4E;
  }
  .form-success__icon svg {
    width: 100%;
    height: 100%;
  }
  .form-success h3 {
    font-size: 1.5rem;
    margin: 0;
  }
  .form-success p {
    color: #7A9A85;
    margin: 0;
  }
}
@media only screen and (min-device-width: 1140px) {
  .contact-section {
    background: #EEF3EF;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .contact-info__block h2 {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .contact-info__block h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(212, 228, 216, 0.6);
    text-decoration: none;
    transition: color 0.2s;
    margin: 0;
  }
  .contact-info__item:last-child {
    border-bottom: none;
  }
  .contact-info__item:hover {
    color: #3C6B4E;
  }
  .contact-info__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: #3C6B4E;
    background: #E5EFE8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    transition: background 0.2s;
  }
  .contact-info__icon svg {
    width: 100%;
    height: 100%;
  }
  .contact-info__item:hover .contact-info__icon {
    background: rgba(60, 107, 78, 0.15);
  }
  .contact-info__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7A9A85;
    margin-bottom: 0.2rem;
  }
  .contact-info__value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #1A3828;
  }
  .contact-info__prices {
    background: #E5EFE8;
    border-radius: 20px;
    padding: 1.5rem;
  }
  .mini-price-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  .mini-price-list__item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #2B4239;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(212, 228, 216, 0.5);
  }
  .mini-price-list__item:last-child {
    border-bottom: none;
  }
  .mini-price-list__item span:last-child {
    font-weight: 600;
    color: #1A3828;
  }
  .mini-price-list__note {
    font-size: 0.8rem;
    color: #7A9A85;
    margin: 0;
  }
  .ntf-badge {
    background: #FFFFFF;
    border-left: 3px solid #3C6B4E;
    padding: 1rem 1.25rem;
    border-radius: 0 12px 12px 0;
  }
  .ntf-badge p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7A9A85;
    margin-bottom: 0.25rem;
  }
  .ntf-badge strong {
    font-size: 0.9rem;
    color: #1A3828;
    font-weight: 600;
  }
  .contact-form-wrap {
    background: #FFFFFF;
    border: 1px solid #D4E4D8;
    border-radius: 20px;
    padding: 2rem;
  }
  .contact-form__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .contact-form__privacy {
    font-size: 0.8rem;
    color: #7A9A85;
    margin-top: 1.25rem;
    margin-bottom: 0;
    line-height: 1.5;
  }
  .field {
    position: relative;
    margin-bottom: 2.25rem;
  }
  .field input,
  .field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #D4E4D8;
    padding: 0.875rem 0 0.5rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1rem;
    color: #1A3828;
    outline: none;
    resize: none;
    transition: border-color 0.2s;
  }
  .field input::-moz-placeholder, .field textarea::-moz-placeholder {
    color: transparent;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    color: transparent;
  }
  .field textarea {
    padding-top: 1.25rem;
    min-height: 140px;
  }
  .field label {
    position: absolute;
    top: 0.875rem;
    left: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #7A9A85;
    pointer-events: none;
    transition: top 0.25s cubic-bezier(0.22, 1, 0.36, 1), font-size 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
  }
  .field .required {
    color: #3C6B4E;
    font-size: 0.8em;
  }
  .field .optional {
    font-size: 0.8em;
    color: #7A9A85;
    font-weight: 300;
  }
  .field__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3C6B4E;
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .field__error {
    display: block;
    font-size: 0.8rem;
    color: #c0392b;
    margin-top: 0.375rem;
    min-height: 1.1rem;
  }
  .field.is-focused label, .field.is-filled label {
    top: -1.1rem;
    font-size: 0.75rem;
    color: #3C6B4E;
  }
  .field.is-focused .field__line, .field.is-filled .field__line {
    width: 100%;
  }
  .field--textarea label {
    top: 0.5rem;
  }
  .field--textarea.is-focused label, .field--textarea.is-filled label {
    top: -1.1rem;
  }
  .field--hidden {
    position: absolute;
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .btn--submit {
    width: 100%;
    justify-content: center;
    padding: 1.125rem 2rem;
    font-size: 1rem;
    position: relative;
  }
  .btn--submit.is-loading {
    pointer-events: none;
    opacity: 0.8;
  }
  .btn--submit.is-loading .btn__text {
    opacity: 0;
  }
  .btn--submit.is-loading .btn__spinner {
    opacity: 1;
  }
  .btn--submit .btn__text {
    transition: opacity 0.2s;
  }
  .btn--submit .btn__spinner {
    position: absolute;
    width: 24px;
    height: 24px;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .btn--submit .btn__spinner svg {
    width: 100%;
    height: 100%;
    animation: spin 0.9s linear infinite;
  }
  .form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    gap: 1rem;
    animation: fade-in-up 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .form-success__icon {
    width: 64px;
    height: 64px;
    color: #3C6B4E;
  }
  .form-success__icon svg {
    width: 100%;
    height: 100%;
  }
  .form-success h3 {
    font-size: 1.5rem;
    margin: 0;
  }
  .form-success p {
    color: #7A9A85;
    margin: 0;
  }
}
@media (max-width: 1139px) {
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .blog-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #D4E4D8;
    transition: box-shadow 0.25s, transform 0.25s;
  }
  .blog-card:hover {
    box-shadow: 0 8px 32px rgba(26, 56, 40, 0.08);
    transform: translateY(-3px);
  }
  .blog-card__inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
  }
  .blog-card__meta time {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #3C6B4E;
    text-transform: uppercase;
  }
  .blog-card__title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  .blog-card__title a {
    color: #1A3828;
    transition: color 0.2s;
  }
  .blog-card__title a:hover {
    color: #3C6B4E;
  }
  .blog-card__excerpt {
    font-size: 0.9375rem;
    color: #7A9A85;
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .blog-card__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #3C6B4E;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s;
  }
  .blog-card__link:hover {
    gap: 0.5rem;
  }
  .blog-post-content .prose {
    font-size: 1.125rem;
    line-height: 1.85;
  }
  .blog-post-content .prose p {
    margin-bottom: 1.5rem;
  }
  .blog-post-content .prose h2 {
    margin: 2.5rem 0 1.25rem;
  }
  .blog-post-content .prose h3 {
    margin: 2rem 0 1rem;
  }
  .blog-post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #D4E4D8;
  }
}
@media only screen and (min-device-width: 1140px) {
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
  }
  .blog-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #D4E4D8;
    transition: box-shadow 0.25s, transform 0.25s;
  }
  .blog-card:hover {
    box-shadow: 0 8px 32px rgba(26, 56, 40, 0.08);
    transform: translateY(-3px);
  }
  .blog-card__inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
  }
  .blog-card__meta time {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #3C6B4E;
    text-transform: uppercase;
  }
  .blog-card__title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  .blog-card__title a {
    color: #1A3828;
    transition: color 0.2s;
  }
  .blog-card__title a:hover {
    color: #3C6B4E;
  }
  .blog-card__excerpt {
    font-size: 0.9375rem;
    color: #7A9A85;
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .blog-card__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #3C6B4E;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s;
  }
  .blog-card__link:hover {
    gap: 0.5rem;
  }
  .blog-post-content .prose {
    font-size: 1.125rem;
    line-height: 1.85;
  }
  .blog-post-content .prose p {
    margin-bottom: 1.5rem;
  }
  .blog-post-content .prose h2 {
    margin: 2.5rem 0 1.25rem;
  }
  .blog-post-content .prose h3 {
    margin: 2rem 0 1rem;
  }
  .blog-post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #D4E4D8;
  }
}
@media (max-width: 1139px) {
  .page-content {
    background: #EEF3EF;
  }
  .phd-thesis {
    background: #E5EFE8;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
    border-left: 4px solid #3C6B4E;
  }
  .phd-thesis__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3C6B4E;
    margin-bottom: 0.75rem;
  }
  .phd-thesis__title {
    font-family: "EB Garamond", Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    font-weight: 400;
    color: #1A3828;
    line-height: 1.4;
    margin: 0;
  }
  .research-findings {
    margin-bottom: 4rem;
  }
  .research-findings h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .findings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .finding-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid #D4E4D8;
    border-bottom: 2px solid #3C6B4E;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .finding-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 56, 40, 0.07);
  }
  .finding-card__icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  .finding-card h3 {
    font-size: 1rem;
    margin: 0;
  }
  .finding-card p {
    font-size: 0.875rem;
    color: #7A9A85;
    margin: 0;
  }
  .concept-block {
    padding: 1.25rem 0;
    border-bottom: 1px solid #D4E4D8;
  }
  .concept-block:last-child {
    border-bottom: none;
  }
  .concept-block h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #3C6B4E;
  }
  .concept-block p {
    margin: 0;
  }
  .topics-section {
    margin-bottom: 4rem;
  }
  .topics-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .topic-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #D4E4D8;
    align-items: start;
  }
  .topic-card:last-child {
    border-bottom: none;
  }
  .topic-card__number {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #D4E4D8;
    line-height: 1;
    padding-top: 0.2rem;
    transition: color 0.3s;
  }
  .topic-card:hover .topic-card__number {
    color: #3C6B4E;
  }
  .topic-card__content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .topic-card__content p {
    margin: 0;
  }
  .audience-section {
    margin-bottom: 4rem;
  }
  .audience-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
  .audience-item {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #D4E4D8;
    transition: border-color 0.2s;
  }
  .audience-item:hover {
    border-color: #3C6B4E;
  }
  .audience-item span {
    font-size: 1.5rem;
  }
  .audience-item p {
    font-size: 0.875rem;
    color: #7A9A85;
    margin: 0;
  }
  .article-card {
    padding: 2rem 0;
    border-bottom: 1px solid #D4E4D8;
  }
  .article-card:last-child {
    border-bottom: none;
  }
  .article-card__journal {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3C6B4E;
    margin-bottom: 0.75rem;
  }
  .article-card__title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }
  .article-card__authors {
    font-size: 0.875rem;
    color: #7A9A85;
    font-style: italic;
    margin-bottom: 0.75rem;
  }
  .article-card__abstract {
    color: #2B4239;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
  }
  .article-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .news-card {
    padding: 2rem 0;
    border-bottom: 1px solid #D4E4D8;
  }
  .news-card:last-child {
    border-bottom: none;
  }
  .news-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
  }
  .news-card__source {
    display: inline-block;
    background: #3C6B4E;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
  }
  .news-card__date {
    font-size: 0.8125rem;
    color: #7A9A85;
  }
  .news-card__title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
  .news-card p:last-child {
    margin-bottom: 0;
  }
  .news-card--highlight {
    background: #E5EFE8;
    border-radius: 20px;
    padding: 2rem;
    border: none;
    margin: 0.5rem 0;
  }
  .news-card .btn {
    margin-top: 1rem;
  }
  .coming-soon-block {
    text-align: center;
    background: #E5EFE8;
    border-radius: 20px;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .coming-soon-block__icon {
    font-size: 3rem;
  }
  .coming-soon-block h2 {
    margin: 0;
  }
  .coming-soon-block p {
    color: #2B4239;
    max-width: 480px;
    margin: 0;
  }
  .coming-soon-block .btn {
    margin-top: 0.5rem;
  }
  .category-teaser h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .category-item {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid #D4E4D8;
  }
  .category-item span {
    font-size: 1.5rem;
  }
  .category-item h3 {
    font-size: 1rem;
    margin: 0;
  }
  .category-item p {
    font-size: 0.875rem;
    color: #7A9A85;
    margin: 0;
  }
  .article-links {
    margin-top: 2rem;
  }
  .article-links h2 {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .article-links p {
    margin: 0;
  }
  .article-links a {
    color: #3C6B4E;
  }
  .article-links a:hover {
    text-decoration: underline;
  }
}
@media only screen and (min-device-width: 1140px) {
  .page-content {
    background: #EEF3EF;
  }
  .phd-thesis {
    background: #E5EFE8;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
    border-left: 4px solid #3C6B4E;
  }
  .phd-thesis__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3C6B4E;
    margin-bottom: 0.75rem;
  }
  .phd-thesis__title {
    font-family: "EB Garamond", Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    font-weight: 400;
    color: #1A3828;
    line-height: 1.4;
    margin: 0;
  }
  .research-findings {
    margin-bottom: 4rem;
  }
  .research-findings h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .findings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .finding-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid #D4E4D8;
    border-bottom: 2px solid #3C6B4E;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .finding-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 56, 40, 0.07);
  }
  .finding-card__icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  .finding-card h3 {
    font-size: 1rem;
    margin: 0;
  }
  .finding-card p {
    font-size: 0.875rem;
    color: #7A9A85;
    margin: 0;
  }
  .concept-block {
    padding: 1.25rem 0;
    border-bottom: 1px solid #D4E4D8;
  }
  .concept-block:last-child {
    border-bottom: none;
  }
  .concept-block h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #3C6B4E;
  }
  .concept-block p {
    margin: 0;
  }
  .topics-section {
    margin-bottom: 4rem;
  }
  .topics-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .topic-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #D4E4D8;
    align-items: start;
  }
  .topic-card:last-child {
    border-bottom: none;
  }
  .topic-card__number {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #D4E4D8;
    line-height: 1;
    padding-top: 0.2rem;
    transition: color 0.3s;
  }
  .topic-card:hover .topic-card__number {
    color: #3C6B4E;
  }
  .topic-card__content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .topic-card__content p {
    margin: 0;
  }
  .audience-section {
    margin-bottom: 4rem;
  }
  .audience-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
  .audience-item {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #D4E4D8;
    transition: border-color 0.2s;
  }
  .audience-item:hover {
    border-color: #3C6B4E;
  }
  .audience-item span {
    font-size: 1.5rem;
  }
  .audience-item p {
    font-size: 0.875rem;
    color: #7A9A85;
    margin: 0;
  }
  .article-card {
    padding: 2rem 0;
    border-bottom: 1px solid #D4E4D8;
  }
  .article-card:last-child {
    border-bottom: none;
  }
  .article-card__journal {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3C6B4E;
    margin-bottom: 0.75rem;
  }
  .article-card__title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }
  .article-card__authors {
    font-size: 0.875rem;
    color: #7A9A85;
    font-style: italic;
    margin-bottom: 0.75rem;
  }
  .article-card__abstract {
    color: #2B4239;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
  }
  .article-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .news-card {
    padding: 2rem 0;
    border-bottom: 1px solid #D4E4D8;
  }
  .news-card:last-child {
    border-bottom: none;
  }
  .news-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
  }
  .news-card__source {
    display: inline-block;
    background: #3C6B4E;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
  }
  .news-card__date {
    font-size: 0.8125rem;
    color: #7A9A85;
  }
  .news-card__title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
  .news-card p:last-child {
    margin-bottom: 0;
  }
  .news-card--highlight {
    background: #E5EFE8;
    border-radius: 20px;
    padding: 2rem;
    border: none;
    margin: 0.5rem 0;
  }
  .news-card .btn {
    margin-top: 1rem;
  }
  .coming-soon-block {
    text-align: center;
    background: #E5EFE8;
    border-radius: 20px;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .coming-soon-block__icon {
    font-size: 3rem;
  }
  .coming-soon-block h2 {
    margin: 0;
  }
  .coming-soon-block p {
    color: #2B4239;
    max-width: 480px;
    margin: 0;
  }
  .coming-soon-block .btn {
    margin-top: 0.5rem;
  }
  .category-teaser h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  .category-item {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid #D4E4D8;
  }
  .category-item span {
    font-size: 1.5rem;
  }
  .category-item h3 {
    font-size: 1rem;
    margin: 0;
  }
  .category-item p {
    font-size: 0.875rem;
    color: #7A9A85;
    margin: 0;
  }
  .article-links {
    margin-top: 2rem;
  }
  .article-links h2 {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D4E4D8;
  }
  .article-links p {
    margin: 0;
  }
  .article-links a {
    color: #3C6B4E;
  }
  .article-links a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 1139px) {
  .svc-hero {
    background: #FFFFFF;
    padding: 2rem 1rem 4rem;
  }
  .svc-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .svc-hero__text .overline {
    margin-bottom: 0.5rem;
  }
  .svc-hero__text h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin: 0.5rem 0 1.25rem;
    line-height: 1.15;
  }
  .svc-hero__lead {
    font-size: 1.0625rem;
    color: #2B4239;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .svc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .svc-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .svc-hero__image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }
  .svc-hero__image img {
    width: 100%;
    height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .svc-hero__image--gradient {
    overflow: visible;
  }
  .svc-hero__image-card {
    background: #152E22;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 220px;
    justify-content: center;
  }
  .svc-hero__image-card--teal {
    background: #1E4A30;
  }
  .svc-hero__image-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1A3828;
  }
  .svc-hero__quote {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 1.0625rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 0.75rem;
  }
  .svc-hero cite {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
  }
  .svc-badge {
    display: inline-flex;
    align-items: center;
    background: #E5EFE8;
    border: 1px solid #D4E4D8;
    border-radius: 100px;
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    color: #1A3828;
  }
  .svc-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .svc-stat strong {
    display: block;
    font-family: "EB Garamond", Georgia, serif;
    font-size: 1.75rem;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.2rem;
  }
  .svc-stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
  }
  .svc-intro {
    background: #EEF3EF;
  }
  .svc-intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .svc-intro__body h2 {
    margin-bottom: 1rem;
  }
  .svc-intro__body p {
    color: #2B4239;
    line-height: 1.75;
    margin-bottom: 1rem;
  }
  .svc-intro__body p:last-child {
    margin-bottom: 0;
  }
  .svc-fact-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #D4E4D8;
  }
  .svc-fact-card h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #1A3828;
  }
  .svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
  .svc-list li {
    font-size: 0.9375rem;
    color: #2B4239;
    padding-left: 1.5rem;
    position: relative;
  }
  .svc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3C6B4E;
  }
  .svc-methods {
    background: #FFFFFF;
    padding: 4rem 1rem;
  }
  .svc-methods__header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .svc-methods__header .overline {
    margin-bottom: 0.5rem;
  }
  .svc-methods__header h2 {
    margin: 0.25rem 0 0.75rem;
  }
  .svc-methods__header p {
    color: #7A9A85;
  }
  .svc-methods__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .svc-method-card {
    background: #EEF3EF;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #D4E4D8;
  }
  .svc-method-card__num {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #D4E4D8;
    line-height: 1;
    margin-bottom: 0.75rem;
  }
  .svc-method-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
    color: #1A3828;
  }
  .svc-method-card__full {
    font-size: 0.8125rem;
    color: #7A9A85;
    margin-bottom: 0.75rem;
    font-style: italic;
  }
  .svc-method-card p {
    font-size: 0.9375rem;
    color: #2B4239;
    line-height: 1.7;
    margin: 0;
  }
  .svc-process {
    background: #EEF3EF;
  }
  .svc-process__header {
    margin-bottom: 2rem;
  }
  .svc-process__header .overline {
    margin-bottom: 0.5rem;
  }
  .svc-process__header h2 {
    margin: 0.25rem 0 0;
  }
  .svc-steps {
    display: flex;
    flex-direction: column;
  }
  .svc-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #D4E4D8;
  }
  .svc-step:last-child {
    border-bottom: none;
  }
  .svc-step__num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1A3828;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "EB Garamond", Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    flex-shrink: 0;
  }
  .svc-step__body h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #1A3828;
  }
  .svc-step__body p {
    font-size: 0.9rem;
    color: #2B4239;
    line-height: 1.7;
    margin: 0;
  }
  .svc-pricing {
    background: #FFFFFF;
    padding: 4rem 1rem;
  }
  .svc-pricing__header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .svc-pricing__header .overline {
    margin-bottom: 0.5rem;
  }
  .svc-pricing__header h2 {
    margin: 0.25rem 0 0.75rem;
  }
  .svc-pricing__note {
    text-align: center;
    font-size: 0.875rem;
    color: #7A9A85;
    margin-top: 1.5rem;
  }
  .svc-price-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  .svc-price-cards--single {
    max-width: 400px;
  }
  .svc-price-card {
    background: #EEF3EF;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #D4E4D8;
    text-align: center;
    position: relative;
  }
  .svc-price-card--featured {
    background: #152E22;
    border-color: transparent;
  }
  .svc-price-card--featured .svc-price-card__duration {
    color: rgba(255, 255, 255, 0.65);
  }
  .svc-price-card--featured .svc-price-card__price {
    color: #FFFFFF;
  }
  .svc-price-card--featured p {
    color: rgba(255, 255, 255, 0.75);
  }
  .svc-price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3C6B4E;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.875rem;
    border-radius: 100px;
    white-space: nowrap;
  }
  .svc-price-card__duration {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7A9A85;
    margin-bottom: 0.5rem;
  }
  .svc-price-card__price {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #1A3828;
    line-height: 1;
    margin-bottom: 1rem;
  }
  .svc-price-card p {
    font-size: 0.9rem;
    color: #2B4239;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }
  .svc-faq {
    background: #EEF3EF;
  }
  .svc-faq__header {
    margin-bottom: 2rem;
  }
  .svc-faq__header .overline {
    margin-bottom: 0.5rem;
  }
  .svc-faq__header h2 {
    margin: 0.25rem 0 0;
  }
  .faq-item {
    border-bottom: 1px solid #D4E4D8;
  }
  .faq-item:first-child {
    border-top: 1px solid #D4E4D8;
  }
  .faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #1A3828;
    cursor: pointer;
    list-style: none;
  }
  .faq-item__question::-webkit-details-marker {
    display: none;
  }
  .faq-item__question::after {
    content: "+";
    font-size: 1.25rem;
    font-weight: 300;
    color: #3C6B4E;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .faq-item[open] .faq-item__question::after {
    transform: rotate(45deg);
  }
  .faq-item__answer {
    padding-bottom: 1.25rem;
  }
  .faq-item__answer p {
    font-size: 0.9375rem;
    color: #2B4239;
    line-height: 1.7;
    margin: 0;
  }
  .svc-cta {
    background: #EEF3EF;
    padding: 0 1rem 4rem;
  }
  .svc-cta__card {
    background: #152E22;
    border-radius: 20px;
    padding: 4rem 2rem;
  }
  .svc-cta__text h2 {
    color: #FFFFFF;
    margin-bottom: 0.75rem;
  }
  .svc-cta__text p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
  }
  .svc-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}
@media only screen and (min-device-width: 1140px) {
  .svc-hero {
    background: #FFFFFF;
    padding: 2rem 2rem 6rem;
  }
  .svc-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1390px;
    margin: 0 auto;
  }
  .svc-hero__text .overline {
    margin-bottom: 0.75rem;
  }
  .svc-hero__text h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin: 0.5rem 0 1.5rem;
    line-height: 1.1;
  }
  .svc-hero__lead {
    font-size: 1.125rem;
    color: #2B4239;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
  }
  .svc-hero__actions {
    display: flex;
    gap: 0.875rem;
    margin-bottom: 2rem;
  }
  .svc-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
  }
  .svc-hero__image {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
  }
  .svc-hero__image img {
    width: 100%;
    height: 480px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .svc-hero__image--gradient {
    overflow: visible;
  }
  .svc-hero__image-card {
    background: #152E22;
    border-radius: 28px;
    padding: 4rem;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .svc-hero__image-card--teal {
    background: #1E4A30;
  }
  .svc-hero__image-caption {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1A3828;
  }
  .svc-hero__quote {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 1.25rem;
  }
  .svc-hero cite {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
  }
  .svc-badge {
    display: inline-flex;
    align-items: center;
    background: #E5EFE8;
    border: 1px solid #D4E4D8;
    border-radius: 100px;
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    color: #1A3828;
  }
  .svc-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .svc-stat strong {
    display: block;
    font-family: "EB Garamond", Georgia, serif;
    font-size: 2.25rem;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .svc-stat span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
  }
  .svc-intro {
    background: #EEF3EF;
  }
  .svc-intro__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
  }
  .svc-intro__body h2 {
    margin-bottom: 1.25rem;
  }
  .svc-intro__body p {
    color: #2B4239;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }
  .svc-intro__body p:last-child {
    margin-bottom: 0;
  }
  .svc-fact-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem 2rem 4rem;
    border: 1px solid #D4E4D8;
    position: sticky;
    top: calc(72px + 1.5rem);
  }
  .svc-fact-card h3 {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: #1A3828;
  }
  .svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .svc-list li {
    font-size: 0.9375rem;
    color: #2B4239;
    padding-left: 1.5rem;
    position: relative;
  }
  .svc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3C6B4E;
  }
  .svc-methods {
    background: #FFFFFF;
    padding: 6rem 2rem;
  }
  .svc-methods__header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1390px;
    margin-left: auto;
    margin-right: auto;
  }
  .svc-methods__header .overline {
    margin-bottom: 0.5rem;
  }
  .svc-methods__header h2 {
    margin: 0.25rem 0 0.875rem;
  }
  .svc-methods__header p {
    color: #7A9A85;
  }
  .svc-methods__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1390px;
    margin: 0 auto;
  }
  .svc-method-card {
    background: #EEF3EF;
    border-radius: 20px;
    padding: 2rem 2rem 4rem;
    border: 1px solid #D4E4D8;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .svc-method-card:hover {
    box-shadow: 0 8px 32px rgba(26, 56, 40, 0.07);
    transform: translateY(-3px);
  }
  .svc-method-card__num {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 3rem;
    font-weight: 500;
    color: #D4E4D8;
    line-height: 1;
    margin-bottom: 1rem;
  }
  .svc-method-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: #1A3828;
  }
  .svc-method-card__full {
    font-size: 0.8125rem;
    color: #7A9A85;
    margin-bottom: 0.875rem;
    font-style: italic;
  }
  .svc-method-card p {
    font-size: 0.9375rem;
    color: #2B4239;
    line-height: 1.7;
    margin: 0;
  }
  .svc-process {
    background: #EEF3EF;
  }
  .svc-process__header {
    margin-bottom: 2.5rem;
  }
  .svc-process__header .overline {
    margin-bottom: 0.5rem;
  }
  .svc-process__header h2 {
    margin: 0.25rem 0 0;
  }
  .svc-steps {
    display: flex;
    flex-direction: column;
    max-width: 720px;
  }
  .svc-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid #D4E4D8;
  }
  .svc-step:last-child {
    border-bottom: none;
  }
  .svc-step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1A3828;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "EB Garamond", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    flex-shrink: 0;
  }
  .svc-step__body h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: #1A3828;
  }
  .svc-step__body p {
    font-size: 0.9375rem;
    color: #2B4239;
    line-height: 1.75;
    margin: 0;
  }
  .svc-pricing {
    background: #FFFFFF;
    padding: 6rem 2rem;
  }
  .svc-pricing__header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .svc-pricing__header .overline {
    margin-bottom: 0.5rem;
  }
  .svc-pricing__header h2 {
    margin: 0.25rem 0 0.875rem;
  }
  .svc-pricing__note {
    text-align: center;
    font-size: 0.9rem;
    color: #7A9A85;
    margin-top: 2rem;
  }
  .svc-price-cards {
    display: grid;
    grid-template-columns: repeat(2, 340px);
    gap: 1.5rem;
    justify-content: center;
  }
  .svc-price-cards--single {
    grid-template-columns: 400px;
  }
  .svc-price-card {
    background: #EEF3EF;
    border-radius: 28px;
    padding: 4rem 2rem;
    border: 1px solid #D4E4D8;
    text-align: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .svc-price-card:hover {
    box-shadow: 0 12px 48px rgba(26, 56, 40, 0.08);
    transform: translateY(-4px);
  }
  .svc-price-card--featured {
    background: #152E22;
    border-color: transparent;
  }
  .svc-price-card--featured .svc-price-card__duration {
    color: rgba(255, 255, 255, 0.6);
  }
  .svc-price-card--featured .svc-price-card__price {
    color: #FFFFFF;
  }
  .svc-price-card--featured p {
    color: rgba(255, 255, 255, 0.7);
  }
  .svc-price-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #3C6B4E;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
  }
  .svc-price-card__duration {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7A9A85;
    margin-bottom: 0.625rem;
  }
  .svc-price-card__price {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 3rem;
    font-weight: 500;
    color: #1A3828;
    line-height: 1;
    margin-bottom: 1.25rem;
  }
  .svc-price-card p {
    font-size: 0.9375rem;
    color: #2B4239;
    line-height: 1.65;
    margin-bottom: 1.75rem;
  }
  .svc-faq {
    background: #EEF3EF;
  }
  .svc-faq__header {
    margin-bottom: 2.5rem;
  }
  .svc-faq__header .overline {
    margin-bottom: 0.5rem;
  }
  .svc-faq__header h2 {
    margin: 0.25rem 0 0;
  }
  .svc-faq__list {
    max-width: 720px;
  }
  .faq-item {
    border-bottom: 1px solid #D4E4D8;
  }
  .faq-item:first-child {
    border-top: 1px solid #D4E4D8;
  }
  .faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.375rem 0;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #1A3828;
    cursor: pointer;
    list-style: none;
    transition: color 0.2s;
  }
  .faq-item__question::-webkit-details-marker {
    display: none;
  }
  .faq-item__question:hover {
    color: #3C6B4E;
  }
  .faq-item__question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    color: #3C6B4E;
    flex-shrink: 0;
    transition: transform 0.25s;
  }
  .faq-item[open] .faq-item__question::after {
    transform: rotate(45deg);
  }
  .faq-item__answer {
    padding-bottom: 1.375rem;
  }
  .faq-item__answer p {
    font-size: 1rem;
    color: #2B4239;
    line-height: 1.75;
    margin: 0;
  }
  .svc-cta {
    background: #EEF3EF;
    padding: 0 2rem 6rem;
  }
  .svc-cta__card {
    background: #152E22;
    border-radius: 28px;
    padding: 6rem 4rem;
    max-width: 1390px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  .svc-cta__text h2 {
    color: #FFFFFF;
    margin-bottom: 0.75rem;
  }
  .svc-cta__text p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    max-width: 480px;
  }
  .svc-cta__actions {
    display: flex;
    gap: 0.875rem;
    flex-shrink: 0;
  }
  .nav__dropdown-wrap {
    position: relative;
  }
  .nav__dropdown-wrap.is-open .nav__dropdown, .nav__dropdown-wrap:focus-within .nav__dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .nav__dropdown-wrap.is-open .nav__dropdown-toggle svg, .nav__dropdown-wrap:focus-within .nav__dropdown-toggle svg {
    transform: rotate(180deg);
  }
  .nav__dropdown-toggle {
    background: none;
    border: none;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: #2B4239;
    padding: 0.4rem 0.875rem;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .nav__dropdown-toggle:hover, .nav__dropdown-toggle.active {
    background: #E5EFE8;
    color: #1A3828;
  }
  .nav__dropdown-toggle.active {
    font-weight: 500;
  }
  .nav__dropdown-toggle svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .nav__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #FFFFFF;
    border: 1px solid #D4E4D8;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(26, 56, 40, 0.12);
    padding: 0.5rem;
    min-width: 280px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  .nav__dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    border-left: 1px solid #D4E4D8;
    border-top: 1px solid #D4E4D8;
    transform: translateX(-50%) rotate(45deg);
  }
  .nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: #2B4239;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
  }
  .nav__dropdown-item:hover {
    background: #E5EFE8;
    color: #1A3828;
  }
  .nav__dropdown-item:hover .nav__dropdown-item-arrow {
    opacity: 1;
    transform: translateX(0);
  }
  .nav__dropdown-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #E5EFE8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .nav__dropdown-item__icon svg {
    width: 18px;
    height: 18px;
    color: #3C6B4E;
  }
  .nav__dropdown-item__label {
    flex: 1;
  }
  .nav__dropdown-item__label strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1A3828;
  }
  .nav__dropdown-item__label span {
    font-size: 0.8rem;
    color: #7A9A85;
  }
  .nav__dropdown-item-arrow {
    font-size: 0.8125rem;
    color: #7A9A85;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.15s, transform 0.15s;
  }
  .nav__dropdown-divider {
    height: 1px;
    background: #D4E4D8;
    margin: 0.375rem 0.5rem;
  }
}
.preview-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 35, 24, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: overlay-in 0.5s ease both;
  padding: 1.5rem;
}
.preview-overlay--out {
  animation: overlay-out 0.45s ease both;
  pointer-events: none;
}

.preview-confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.preview-modal {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(13, 35, 24, 0.45), 0 0 0 1px rgba(60, 107, 78, 0.12);
  animation: modal-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
.preview-overlay--out .preview-modal {
  animation: modal-out 0.35s ease both;
}
.preview-modal__stars {
  font-size: 1.125rem;
  letter-spacing: 0.5rem;
  color: #3C6B4E;
  margin-bottom: 1.25rem;
  animation: float 3s ease-in-out infinite;
}
.preview-modal__logo {
  width: 160px;
  height: auto;
  margin: 0 auto 1.75rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(26, 56, 40, 0.12));
}
.preview-modal__title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 500;
  color: #1A3828;
  line-height: 1.1;
  margin: 0 0 0.625rem;
}
.preview-modal__text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #3C6B4E;
  margin: 0 0 0.5rem;
}
.preview-modal__sub {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9375rem;
  color: #7A9A85;
  margin: 0 0 2rem;
  line-height: 1.55;
}
.preview-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: #1A3828;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 999px;
  padding: 0.875rem 2rem;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(26, 56, 40, 0.25);
}
.preview-modal__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.preview-modal__btn:hover {
  background: #3C6B4E;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 56, 40, 0.3);
}
.preview-modal__btn:hover svg {
  transform: translateX(3px);
}
.preview-modal__btn:active {
  transform: translateY(0);
}
.preview-modal::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, #3C6B4E 0%, #E5EFE8 50%, #3C6B4E 100%);
  z-index: -1;
  opacity: 0.5;
}

@keyframes overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes overlay-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes modal-out {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.9) translateY(12px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.dash-body {
  background: #EEF3EF;
  min-height: 100vh;
  padding-top: 0 !important;
}

.dash-layout {
  display: flex;
  min-height: 100vh;
}

.dash-sidebar {
  width: 240px;
  min-height: 100vh;
  background: #FFFFFF;
  border-right: 1px solid #D4E4D8;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
}
.dash-sidebar__logo {
  padding: 28px 24px 20px;
  border-bottom: 1px solid #D4E4D8;
}
.dash-sidebar__logo a {
  display: block;
}
.dash-sidebar__logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.dash-sidebar__nav {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dash-sidebar__footer {
  padding: 12px 12px 20px;
  border-top: 1px solid #D4E4D8;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #2B4239;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.dash-nav-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}
.dash-nav-link:hover {
  background: #EEF3EF;
  color: #1A3828;
}
.dash-nav-link:hover svg {
  opacity: 1;
}
.dash-nav-link.active {
  background: #E5EFE8;
  color: #1A3828;
  font-weight: 500;
}
.dash-nav-link.active svg {
  opacity: 1;
}
.dash-nav-link--logout {
  color: #7A9A85;
}
.dash-nav-link--logout:hover {
  color: #c0392b;
  background: #fef2f2;
}

.dash-badge {
  margin-left: auto;
  background: #c0392b;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  line-height: 1.4;
}

.dash-main {
  margin-left: 240px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.dash-topbar {
  background: #FFFFFF;
  border-bottom: 1px solid #D4E4D8;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.dash-topbar__title {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A3828;
  margin: 0;
}
.dash-topbar__user {
  font-size: 0.875rem;
  color: #7A9A85;
}

.dash-content {
  padding: 28px 32px;
  flex: 1;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.dash-stat-card {
  background: #FFFFFF;
  border: 1px solid #D4E4D8;
  border-radius: 12px;
  padding: 20px 20px 16px;
  position: relative;
  overflow: hidden;
}
.dash-stat-card__value {
  display: block;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;
  color: #1A3828;
  line-height: 1;
  margin-bottom: 6px;
}
.dash-stat-card__label {
  display: block;
  font-size: 0.8rem;
  color: #7A9A85;
  font-weight: 400;
}
.dash-stat-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #E5EFE8;
}
.dash-stat-card__accent--alert {
  background: #fecaca;
}

.dash-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dash-panel {
  background: #FFFFFF;
  border: 1px solid #D4E4D8;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.dash-panel--narrow {
  max-width: 500px;
}
.dash-panel--detail {
  padding: 0;
}
.dash-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 14px;
  border-bottom: 1px solid #D4E4D8;
}
.dash-panel__title {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1A3828;
  margin: 0;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.dash-table thead tr {
  border-bottom: 1px solid #D4E4D8;
}
.dash-table th {
  padding: 10px 24px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7A9A85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.dash-table td {
  padding: 13px 24px;
  color: #1A3828;
  border-bottom: 1px solid rgba(212, 228, 216, 0.6);
  vertical-align: middle;
}
.dash-table tbody tr:last-child td {
  border-bottom: none;
}
.dash-table tbody tr:hover {
  background: #EEF3EF;
}
.dash-table__muted {
  color: #7A9A85;
}
.dash-table__truncate {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dash-table__actions {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}
.dash-table__row--unread td:first-child {
  font-weight: 500;
}

.dash-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.dash-btn--primary {
  background: #1A3828;
  color: #FFFFFF;
}
.dash-btn--primary:hover {
  background: #3C6B4E;
}
.dash-btn--ghost {
  background: transparent;
  color: #1A3828;
  border: 1.5px solid #D4E4D8;
}
.dash-btn--ghost:hover {
  border-color: #1A3828;
  background: #EEF3EF;
}
.dash-btn--danger {
  background: #fef2f2;
  color: #c0392b;
  border: 1.5px solid #fecaca;
}
.dash-btn--danger:hover {
  background: #fee2e2;
}
.dash-btn--sm {
  padding: 5px 12px;
  font-size: 0.8125rem;
}
.dash-btn--full {
  width: 100%;
  justify-content: center;
}

.dash-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3C6B4E;
  text-decoration: none;
  transition: color 0.15s;
}
.dash-link:hover {
  color: #1A3828;
}
.dash-link--danger {
  color: #7A9A85;
}
.dash-link--danger:hover {
  color: #c0392b;
}

.dash-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  background: #EEF3EF;
  color: #7A9A85;
  border: 1px solid #D4E4D8;
}
.dash-tag--green {
  background: #E5EFE8;
  color: #3C6B4E;
  border-color: rgba(60, 107, 78, 0.2);
}
.dash-tag--alert {
  background: #fef2f2;
  color: #c0392b;
  border-color: #fecaca;
}

.dash-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3C6B4E;
  margin-right: 6px;
  flex-shrink: 0;
  vertical-align: middle;
}

.dash-form {
  padding: 24px;
}
.dash-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.dash-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.dash-form__field--full {
  grid-column: 1/-1;
}
.dash-form__field--inline {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.dash-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1A3828;
}
.dash-form__label--checkbox {
  font-weight: 400;
  color: #2B4239;
  cursor: pointer;
}
.dash-form__hint {
  font-weight: 400;
  color: #7A9A85;
}
.dash-form__error {
  font-size: 0.8rem;
  color: #c0392b;
}
.dash-form__actions {
  display: flex;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid #D4E4D8;
  margin-top: 8px;
}

.dash-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #D4E4D8;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  color: #1A3828;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.2s;
}
.dash-input:focus {
  border-color: #3C6B4E;
}
.dash-input::-moz-placeholder {
  color: #7A9A85;
}
.dash-input::placeholder {
  color: #7A9A85;
}

.dash-textarea {
  resize: vertical;
  min-height: 300px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.6;
}

.dash-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #3C6B4E;
  cursor: pointer;
}

input.dash-input,
textarea.dash-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #D4E4D8;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  color: #1A3828;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
input.dash-input:focus,
textarea.dash-input:focus {
  border-color: #3C6B4E;
}
input.dash-input::-moz-placeholder, textarea.dash-input::-moz-placeholder {
  color: #7A9A85;
}
input.dash-input::placeholder,
textarea.dash-input::placeholder {
  color: #7A9A85;
}

textarea.dash-input {
  resize: vertical;
}

textarea.dash-textarea {
  min-height: 320px;
  line-height: 1.6;
}

input.dash-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #3C6B4E;
  cursor: pointer;
}

.dash-detail-meta {
  padding: 24px;
  border-bottom: 1px solid #D4E4D8;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dash-detail-meta__row {
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.dash-detail-meta__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #7A9A85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 80px;
  flex-shrink: 0;
}
.dash-detail-meta__value {
  font-size: 0.9375rem;
  color: #1A3828;
}

.dash-detail-message {
  padding: 24px;
  border-bottom: 1px solid #D4E4D8;
}
.dash-detail-message__label {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #7A9A85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.dash-detail-message__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #2B4239;
  margin: 0;
}

.dash-detail-actions {
  padding: 20px 24px;
  display: flex;
  gap: 12px;
}

.dash-back {
  margin-bottom: 16px;
}

.dash-empty {
  padding: 40px 24px;
  text-align: center;
  color: #7A9A85;
  font-size: 0.9375rem;
  margin: 0;
}

.dash-alert {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #c0392b;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.dash-confirm {
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.dash-confirm__icon {
  width: 52px;
  height: 52px;
  color: #f59e0b;
  margin-bottom: 4px;
}
.dash-confirm__icon svg {
  width: 100%;
  height: 100%;
}
.dash-confirm__title {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A3828;
  margin: 0;
}
.dash-confirm__text {
  color: #7A9A85;
  font-size: 0.9375rem;
  max-width: 340px;
  margin: 0;
}
.dash-confirm__form {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.dash-login-body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EEF3EF;
  min-height: 100vh;
}

.dash-login {
  width: 100%;
  max-width: 400px;
  padding: 24px;
}
.dash-login__card {
  background: #FFFFFF;
  border: 1px solid #D4E4D8;
  border-radius: 20px;
  padding: 40px;
}
.dash-login__logo {
  margin-bottom: 8px;
}
.dash-login__logo img {
  height: 32px;
  width: auto;
}
.dash-login__subtitle {
  font-size: 0.875rem;
  color: #7A9A85;
  margin-bottom: 28px;
}
.dash-login__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1A3828;
}
.dash-field input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #D4E4D8;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  color: #1A3828;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.dash-field input:focus {
  border-color: #3C6B4E;
}