:root {
  --pine-950: #071b10;
  --pine-900: #0d3420;
  --pine-800: #10502b;
  --pine-700: #146333;
  --pine-600: #18763b;
  --pine-100: #e1f1e5;
  --cream: #faf7ef;
  --sand: #e9ddc2;
  --ink: #17231b;
  --muted: #4c5e52;
  --white: #fff;
  --orange: #d95420;
  --focus: #ffbf47;
  --radius-sm: .65rem;
  --radius: 1.1rem;
  --radius-lg: 2rem;
  --shadow: 0 24px 64px rgba(7, 35, 18, .14);
  --shadow-soft: 0 10px 30px rgba(7, 35, 18, .09);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --container: 75rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--pine-700); text-underline-offset: .16em; }
a:hover { color: var(--pine-900); }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
h1, h2, h3, h4 { margin: 0 0 .65em; color: var(--pine-950); font-family: Georgia, "Times New Roman", serif; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 7vw, 5.8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.65rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.2rem; }
.l330-container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.l330-container.narrow, .narrow { max-width: 48rem; }
.l330-section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.eyebrow { margin-bottom: .8rem; color: var(--pine-700); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.skip-link { position: fixed; z-index: 9999; top: .75rem; left: .75rem; padding: .75rem 1rem; transform: translateY(-160%); color: var(--white); background: var(--pine-950); border-radius: .4rem; }
.skip-link:focus { transform: none; }

.button { position: relative; display: inline-flex; min-height: 3rem; overflow: hidden; align-items: center; justify-content: center; gap: .45rem; padding: .78rem 1.25rem; border: 2px solid var(--pine-700); border-radius: 999px; color: var(--white); background: var(--pine-700); box-shadow: 0 8px 24px rgba(20, 99, 51, .22); font-weight: 800; line-height: 1.2; text-decoration: none; transition: transform .3s var(--ease-out), background .2s ease, box-shadow .3s ease; }
.button::after { position: absolute; inset: -40% auto -40% -35%; width: 28%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent); content: ""; transform: skewX(-18deg); transition: left .55s var(--ease-out); }
.button:hover { color: var(--white); background: var(--pine-900); border-color: var(--pine-900); box-shadow: 0 14px 34px rgba(7, 35, 18, .27); transform: translateY(-3px); }
.button:hover::after { left: 112%; }
.button-small { min-height: 2.65rem; padding: .65rem 1rem; font-size: .9rem; }
.button-ghost { color: var(--pine-950); background: rgba(255, 255, 255, .45); border-color: rgba(13, 33, 21, .35); box-shadow: none; backdrop-filter: blur(8px); }
.button-ghost:hover { color: var(--pine-950); background: var(--white); border-color: var(--pine-950); }
.button-light { color: var(--pine-950); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--pine-950); background: var(--sand); border-color: var(--sand); }
.text-link { display: inline-flex; gap: .35rem; align-items: center; font-weight: 800; text-decoration-thickness: 2px; }

.site-header { position: sticky; z-index: 200; top: 0; border-bottom: 1px solid rgba(13, 33, 21, .1); background: rgba(250, 247, 239, .9); backdrop-filter: blur(18px) saturate(1.18); transition: background .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.94); box-shadow: 0 10px 35px rgba(7,35,18,.1); }
.header-inner { display: flex; min-height: 5.3rem; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: block; flex: 0 0 auto; }
.brand img, .brand .custom-logo { width: clamp(12rem, 18vw, 16.5rem); max-height: 4.2rem; object-fit: contain; object-position: left center; }
.brand .custom-logo-link { display: block; }
.primary-navigation { display: flex; align-items: center; gap: 1rem; }
.primary-navigation ul { display: flex; align-items: center; gap: clamp(.4rem, 1.6vw, 1.35rem); margin: 0; padding: 0; list-style: none; }
.primary-navigation .menu > li > a { position: relative; display: block; padding: .75rem .15rem; color: var(--ink); font-size: .94rem; font-weight: 750; text-decoration: none; transition: color .2s ease; }
.primary-navigation .menu > li > a::after { position: absolute; right: .15rem; bottom: .45rem; left: .15rem; height: 2px; border-radius: 2px; background: var(--pine-600); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .32s var(--ease-out); }
.primary-navigation .menu > li > a:hover, .primary-navigation .current-menu-item > a { color: var(--pine-700); }
.primary-navigation .menu > li > a:hover::after, .primary-navigation .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.site-account { position: relative; display: grid; width: 2.85rem; height: 2.85rem; flex: 0 0 auto; place-items: center; border: 1px solid rgba(20,99,51,.22); border-radius: 50%; color: #fff; background: linear-gradient(145deg, var(--pine-700), var(--pine-900)); box-shadow: 0 9px 24px rgba(7,35,18,.2); text-decoration: none; transition: transform .3s var(--ease-out), box-shadow .3s ease; }
.site-account svg { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.site-account-status { position: absolute; right: -.02rem; bottom: .05rem; width: .7rem; height: .7rem; border: 2px solid #fff; border-radius: 50%; background: #35b45a; }
.site-account::after { position: absolute; top: calc(100% + .65rem); right: 0; width: max-content; padding: .42rem .65rem; border-radius: .45rem; color: #fff; background: var(--pine-950); box-shadow: var(--shadow-soft); content: attr(data-label); font-size: .76rem; font-weight: 800; opacity: 0; pointer-events: none; transform: translateY(-.3rem); transition: opacity .2s ease, transform .25s var(--ease-out); }
.site-account:hover { color: #fff; box-shadow: 0 14px 30px rgba(7,35,18,.28); transform: translateY(-3px) rotate(2deg); }
.site-account:hover::after, .site-account:focus-visible::after { opacity: 1; transform: none; }
.site-account-mobile-label { display: none; }
.menu-toggle { display: none; align-items: center; gap: .6rem; padding: .65rem .75rem; border: 1px solid rgba(13, 33, 21, .25); border-radius: .5rem; color: var(--ink); background: transparent; font-weight: 700; }
.menu-toggle-lines, .menu-toggle-lines::before, .menu-toggle-lines::after { display: block; width: 1.25rem; height: 2px; background: currentColor; content: ""; }
.menu-toggle-lines { position: relative; }
.menu-toggle-lines::before { position: absolute; top: -.38rem; }
.menu-toggle-lines::after { position: absolute; top: .38rem; }

.hero { position: relative; min-height: min(51rem, calc(100vh - 5rem)); overflow: hidden; background: linear-gradient(165deg, #eef2dc 0%, #d7e4ce 50%, #b9d2bc 100%); }
.hero-content { position: relative; z-index: 3; display: flex; min-height: min(51rem, calc(100vh - 5rem)); max-width: 52rem; align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 6rem 10rem; }
.hero h1 { max-width: 12ch; }
.hero-lead { max-width: 42rem; color: #304537; font-size: clamp(1.08rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .6rem; }
.hero-sky { position: absolute; inset: 0; overflow: hidden; }
.sun { position: absolute; top: 13%; right: 13%; width: clamp(5rem, 10vw, 9rem); aspect-ratio: 1; border-radius: 50%; background: #f6c95f; box-shadow: 0 0 0 2rem rgba(246, 201, 95, .13), 0 0 0 4rem rgba(246, 201, 95, .07); animation: l330SunFloat 7s ease-in-out infinite; }
.mountain { position: absolute; bottom: -2%; width: 70%; aspect-ratio: 1.7; clip-path: polygon(0 100%, 34% 20%, 48% 57%, 63% 5%, 100% 100%); }
.mountain-back { right: -10%; background: #6f9272; opacity: .68; }
.mountain-front { right: -2%; bottom: -12%; width: 58%; background: #325d3d; }
.mountain-front::before { position: absolute; inset: 0; background: #f4f3e8; clip-path: polygon(31% 25%, 34% 20%, 48% 57%, 63% 5%, 70% 25%, 64% 18%, 60% 33%, 52% 45%, 47% 67%, 41% 49%); content: ""; opacity: .8; }
.forest { position: absolute; right: -3%; bottom: 0; width: 62%; height: 21%; background: var(--pine-950); clip-path: polygon(0 100%, 0 70%, 3% 70%, 5% 35%, 8% 70%, 11% 70%, 14% 22%, 17% 70%, 21% 70%, 24% 39%, 27% 70%, 31% 70%, 35% 10%, 39% 70%, 43% 70%, 47% 30%, 50% 70%, 55% 70%, 58% 18%, 62% 70%, 66% 70%, 70% 35%, 74% 70%, 79% 70%, 83% 8%, 88% 70%, 92% 70%, 96% 32%, 100% 70%, 100% 100%); opacity: .86; }

.intro-section { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 8vw, 8rem); align-items: start; }
.intro-grid p:not(.eyebrow) { color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.35rem); }

.sections-section { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: end; margin-bottom: 2.4rem; }
.section-heading > p { max-width: 30rem; color: var(--muted); }
.section-heading.compact { display: flex; justify-content: space-between; align-items: end; }
.section-cards { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .85rem; }
.section-card { position: relative; display: flex; min-height: 20rem; overflow: hidden; align-items: flex-start; flex-direction: column; justify-content: flex-end; padding: 1.25rem; border: 1px solid rgba(13, 33, 21, .12); border-radius: var(--radius); color: var(--ink); background: linear-gradient(155deg, color-mix(in srgb, var(--section-color) 8%, white), #fff 54%); box-shadow: 0 8px 22px rgba(7,35,18,.055); text-decoration: none; transition: transform .4s var(--ease-out), box-shadow .35s ease, border-color .3s ease; }
.section-card::before { position: absolute; inset: 0 0 auto; height: .45rem; background: var(--section-color); content: ""; }
.section-card img { position: absolute; top: 1.5rem; right: 1.15rem; width: 4.6rem; filter: drop-shadow(0 6px 8px rgba(0,0,0,.13)); transition: transform .45s var(--ease-out), filter .35s ease; }
.section-card strong { margin-bottom: .15rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.12; }
.section-card > span:last-child { color: var(--muted); font-size: .88rem; }
.section-card::after { position: absolute; right: 1.2rem; bottom: 1.15rem; color: var(--section-color); content: "↗"; font-size: 1.25rem; font-weight: 900; opacity: 0; transform: translate(-.4rem, .4rem); transition: opacity .25s ease, transform .35s var(--ease-out); }
.section-card:hover { border-color: color-mix(in srgb, var(--section-color) 45%, #d8dfd9); color: var(--ink); box-shadow: var(--shadow); transform: translateY(-9px) rotate(-.35deg); }
.section-card:hover img { filter: drop-shadow(0 14px 12px rgba(0,0,0,.16)); transform: translateY(-5px) rotate(3deg) scale(1.08); }
.section-card:hover::after { opacity: 1; transform: none; }
.section-age { display: inline-flex; margin-bottom: 1rem; padding: .28rem .55rem; border-radius: 99px; background: color-mix(in srgb, var(--section-color) 18%, white); font-size: .75rem; font-weight: 800; }
.section-blue { --section-color: #28c4f7; }
.section-yellow { --section-color: #f5c60c; }
.section-green { --section-color: #34ae34; }
.section-brown { --section-color: #845221; }
.section-red { --section-color: #d93612; }

.values-section { color: var(--white); background: var(--pine-950); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.2); }
.value { padding: clamp(1.7rem, 4vw, 3.5rem); background: var(--pine-950); }
.value > span { display: grid; width: 3.3rem; aspect-ratio: 1; margin-bottom: 2rem; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: 1.5rem; }
.value h2 { color: var(--white); font-size: 2rem; }
.value p { margin-bottom: 0; color: #bfd0c3; }

.news-section { background: var(--white); }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.news-card { overflow: hidden; border: 1px solid #d5dfd7; border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 25px rgba(7,35,18,.055); transition: transform .4s var(--ease-out), box-shadow .35s ease, border-color .3s ease; }
.news-card:hover { border-color: rgba(20,99,51,.28); box-shadow: var(--shadow); transform: translateY(-7px); }
.news-image { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--pine-100); }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease-out); }
.news-card:hover .news-image img { transform: scale(1.075); }
.news-image-placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(145deg, #d6e6d4, #85aa8b); clip-path: polygon(0 100%, 0 65%, 25% 42%, 42% 63%, 64% 25%, 100% 63%, 100% 100%); }
.news-card-body { padding: 1.35rem; }
.news-card h3 a { color: var(--ink); text-decoration: none; }
.news-card h3 a:hover { color: var(--pine-700); }
.news-card-body > p:not(.post-meta, .eyebrow) { color: var(--muted); }
.post-meta { margin-bottom: .6rem; color: var(--pine-700); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.placeholder-card { grid-column: 1 / -1; min-height: 15rem; display: flex; align-items: center; background: var(--pine-100); }

.cta-section { padding-block: clamp(3rem, 6vw, 5rem); background: var(--pine-700); }
.cta-inner { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; color: var(--white); }
.cta-inner img { width: 6rem; filter: brightness(0) invert(1); }
.cta-inner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.1rem); }
.cta-inner p { max-width: 48rem; margin-bottom: 0; color: #e0eee3; }
.cta-inner .eyebrow { color: #d6f2dc; }

.page-hero, .single-header { position: relative; overflow: hidden; padding-block: clamp(4rem, 8vw, 7rem); background: radial-gradient(circle at 15% 15%, #f8faf4 0, transparent 24rem), linear-gradient(145deg, var(--pine-100), #c7ddc8); }
.page-hero::after, .single-header::after { position: absolute; right: -5rem; bottom: -6rem; width: 28rem; height: 17rem; background: var(--pine-700); clip-path: polygon(0 100%, 40% 25%, 58% 58%, 74% 10%, 100% 100%); content: ""; opacity: .18; }
.page-hero h1, .single-header h1 { position: relative; z-index: 1; max-width: 15ch; font-size: clamp(2.8rem, 6vw, 5rem); }
.content-layout { padding-block: clamp(3rem, 7vw, 6rem); }
.entry-content { max-width: 52rem; font-size: 1.06rem; }
.entry-content > * + * { margin-top: 1.35rem; }
.entry-content h2, .entry-content h3 { margin-top: 2em; }
.entry-content .alignwide { width: min(70rem, calc(100vw - 2rem)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.entry-content blockquote { margin-inline: 0; padding: 1.25rem 1.5rem; border-left: .35rem solid var(--pine-600); background: var(--pine-100); }
.l330-private-area-page .content-layout { width: min(calc(100% - 2rem), 84rem); max-width: none; }
.l330-private-area-page .entry-content { width: 100%; max-width: none; }
.l330-private-area-page .entry-content > .l330-portal,
.l330-private-area-page .entry-content > .l330-login-card { margin-inline: auto; transform: none; }
.l330-private-area-page .entry-content > .l330-portal { width: 100%; }
.archive-layout { padding-block: clamp(3rem, 7vw, 6rem); }
.navigation.pagination { margin-top: 2.5rem; }
.nav-links { display: flex; flex-wrap: wrap; gap: .5rem; }
.page-numbers { display: grid; min-width: 2.7rem; min-height: 2.7rem; padding: .45rem; place-items: center; border: 1px solid #ccd7ce; border-radius: .45rem; background: var(--white); text-decoration: none; }
.page-numbers.current { color: var(--white); background: var(--pine-700); border-color: var(--pine-700); }
.single-featured { margin-top: -2.5rem; position: relative; }
.single-featured img { width: 100%; max-height: 34rem; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.single-entry .entry-content { padding-block: 3.5rem 6rem; }
.error-page { min-height: 65vh; padding-block: 8rem; background: var(--pine-100); }

.l330-enhanced [data-theme-reveal] { opacity: 0; transform: translateY(1.4rem); }
.l330-enhanced [data-theme-reveal].is-visible { opacity: 1; transform: none; transition: opacity .7s ease var(--reveal-delay, 0ms), transform .75s var(--ease-out) var(--reveal-delay, 0ms); }
.l330-private-area-page .l330-portal[data-theme-reveal] { opacity: 1; transform: none; }

@keyframes l330SunFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-.7rem) scale(1.025); } }

.site-footer { color: #d4dfd6; background: #09180f; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .7fr; gap: 3rem; padding-block: 4rem; }
.footer-logo { width: 15rem; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.site-footer h2 { color: var(--white); font-family: inherit; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer a { color: #e5eee7; }
.site-footer address { font-style: normal; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.footer-legal { display: grid; gap: .35rem; }
.footer-bottom { padding-block: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; font-size: .86rem; }

@media (max-width: 66rem) {
  .menu-toggle { display: inline-flex; }
  .primary-navigation { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; align-items: stretch; flex-direction: column; padding: 1rem; border-bottom: 1px solid rgba(13,33,21,.15); background: var(--cream); box-shadow: 0 18px 30px rgba(13,33,21,.13); }
  .primary-navigation.is-open { display: flex; }
  .primary-navigation ul { align-items: stretch; flex-direction: column; gap: 0; }
  .primary-navigation .menu > li > a { padding: .8rem; border-bottom: 1px solid rgba(13,33,21,.08); }
  .site-account { width: 100%; height: auto; min-height: 3rem; grid-template-columns: auto 1fr; justify-content: start; gap: .7rem; padding: .65rem .85rem; border-radius: .75rem; }
  .site-account::after { display: none; }
  .site-account-status { right: auto; bottom: .72rem; left: 1.75rem; }
  .site-account-mobile-label { display: inline; justify-self: start; }
  .section-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .section-card { min-height: 17rem; }
  .hero-content { max-width: 44rem; }
  .hero-sky { opacity: .75; }
}

@media (max-width: 48rem) {
  .l330-container { width: min(calc(100% - 1.35rem), var(--container)); }
  .header-inner { min-height: 4.5rem; }
  .brand img, .brand .custom-logo { width: 11.5rem; }
  .hero, .hero-content { min-height: 43rem; }
  .hero-content { justify-content: flex-start; padding-top: 5rem; }
  .hero h1 { max-width: 10ch; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .mountain-back { width: 105%; right: -38%; }
  .mountain-front { width: 90%; right: -32%; }
  .forest { width: 100%; height: 15%; }
  .sun { right: 9%; }
  .intro-grid, .section-heading, .values-grid, .cta-inner, .footer-grid { grid-template-columns: 1fr; }
  .section-heading.compact { align-items: flex-start; flex-direction: column; }
  .section-cards { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .8rem; }
  .section-card { min-width: min(78vw, 18rem); scroll-snap-align: start; }
  .news-grid { grid-template-columns: 1fr; }
  .value { border-bottom: 1px solid rgba(255,255,255,.16); }
  .cta-inner { text-align: left; }
  .cta-inner img { width: 4.5rem; }
  .cta-inner .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .l330-enhanced [data-theme-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .hero-actions { display: none; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: none; }
}
