:root {
  --forest: #183f2a;
  --forest-2: #2f6142;
  --moss: #7b8f53;
  --soil: #7a5b3e;
  --bark: #33281f;
  --cream: #f6f1e6;
  --paper: #fffaf0;
  --mist: #e8ede2;
  --ink: #1c211b;
  --muted: #636d5f;
  --line: rgba(28, 33, 27, 0.14);
  --shadow: 0 20px 60px rgba(35, 42, 30, 0.16);
  --page-x: clamp(24px, 7vw, 112px);
  --header-x: clamp(20px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px var(--header-x);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 10px 30px rgba(30, 36, 26, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  object-fit: contain;
  box-shadow: 0 8px 24px rgba(14, 31, 18, 0.14);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  font-size: 12px;
  opacity: 0.78;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 32px);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.header-cta,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid currentColor;
}

.header-cta:hover,
.button:hover,
.contact-form button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px var(--page-x) 74px;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 31, 22, 0.78), rgba(20, 31, 22, 0.36) 52%, rgba(20, 31, 22, 0.2)),
    linear-gradient(0deg, rgba(20, 31, 22, 0.74), rgba(20, 31, 22, 0.08) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d9edb5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.16;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.button.primary {
  border-color: var(--paper);
  color: var(--forest);
  background: var(--paper);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 54px);
  bottom: 42px;
  width: min(430px, calc(100% - 40px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(16, 28, 18, 0.48);
  backdrop-filter: blur(12px);
}

.hero-panel dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}

.hero-panel dt {
  font-size: 26px;
  font-weight: 900;
}

.hero-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.intro-band,
.section,
.gallery,
.contact-section,
.instagram-section {
  padding: clamp(72px, 9vw, 126px) var(--page-x);
}

.intro-band {
  background: var(--paper);
}

.intro-grid,
.split,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.intro-grid p,
.section-head p,
.split p,
.place-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-head.compact {
  margin-bottom: 28px;
}

.program-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.program-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #fff;
  background: var(--forest);
}

.program-card.large {
  grid-row: span 2;
  min-height: 740px;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 500ms ease;
}

.program-card:hover img {
  transform: scale(1.035);
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 24, 17, 0.78), rgba(16, 24, 17, 0.05) 65%);
}

.program-card div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
}

.program-card span {
  color: #d9edb5;
  font-size: 13px;
  font-weight: 900;
}

.program-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.muted {
  background: var(--mist);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 2px;
  background: var(--forest-2);
}

.education-panel {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.education-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.mini-stats div {
  padding: 20px 14px;
  background: var(--paper);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  color: var(--forest);
  font-size: 28px;
}

.mini-stats span {
  color: var(--muted);
  font-size: 13px;
}

.place-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: stretch;
}

.place-image {
  width: 100%;
  min-height: 480px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.place-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 54px);
  border-left: 3px solid var(--moss);
  background: var(--paper);
}

.info-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.info-list span {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-weight: 800;
}

.gallery {
  background: var(--bark);
  color: #fff;
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:last-child {
  grid-column: span 2;
}

.contact-section {
  background: var(--forest);
  color: #fff;
}

.contact-section .section-kicker {
  color: #d9edb5;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.button:focus,
.header-cta:focus,
.nav a:focus,
.brand:focus,
.contact-form button:focus {
  outline: 3px solid rgba(123, 143, 83, 0.45);
  outline-offset: 3px;
}

.contact-form button {
  width: 100%;
  border: 0;
  color: #fff;
  background: var(--forest);
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 13px !important;
}

.instagram-section {
  background: var(--paper);
}

.instagram-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.instagram-head h2 {
  margin-bottom: 0;
}

.instagram-title-group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.instagram-logo-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.instagram-logo-mark {
  position: relative;
  display: inline-flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: radial-gradient(circle at 32% 105%, #feda75 0 18%, #fa7e1e 32%, #d62976 55%, #962fbf 76%, #4f5bd5 100%);
  box-shadow: 0 16px 30px rgba(150, 47, 191, 0.2);
}

.instagram-logo-mark::before {
  content: "";
  width: 34px;
  height: 34px;
  border: 5px solid #fff;
  border-radius: 12px;
}

.instagram-logo-mark::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.instagram-logo-mark span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 5px solid #fff;
  border-radius: 50%;
}

.instagram-follow-copy {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  font-weight: 900;
  background: #fff;
}

.behold-feed {
  overflow: hidden;
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  background: var(--paper);
}

.behold-feed behold-widget {
  display: block;
  width: 100%;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  width: min(980px, 100%);
  margin-inline: auto;
}

.instagram-fallback {
  margin-top: 14px;
  display: none;
}

.instagram-fallback.is-visible {
  display: grid;
}

.instagram-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  background: var(--mist);
  box-shadow: 0 14px 34px rgba(35, 42, 30, 0.12);
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.instagram-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  justify-content: center;
  padding: 7px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(16, 28, 18, 0.68);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.instagram-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.instagram-card:hover span,
.instagram-card:focus span {
  opacity: 1;
  transform: translateY(0);
}

.instagram-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px var(--page-x);
  color: rgba(255, 255, 255, 0.72);
  background: #111912;
}

.footer strong {
  color: #fff;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: var(--page-x);
  background:
    linear-gradient(rgba(24, 63, 42, 0.72), rgba(24, 63, 42, 0.72)),
    url("./assets/hero_LKS09498.JPG") center / cover;
}

.thanks-card {
  width: min(680px, 100%);
  padding: clamp(34px, 6vw, 64px);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.95);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  color: var(--forest);
  font-size: clamp(34px, 5vw, 58px);
}

.thanks-card p:not(.section-kicker) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.forestry-page {
  background: #f4efe2;
}

.forestry-header {
  color: #fff;
}

.forestry-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.56fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
  min-height: 88vh;
  padding: 150px var(--page-x) 80px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 31, 21, 0.9), rgba(17, 31, 21, 0.62)),
    url("./assets/forest-trail.jpg?v=summer-2026") center / cover;
}

.forestry-hero-copy {
  max-width: 820px;
}

.forestry-hero h1 {
  font-size: clamp(44px, 7vw, 92px);
}

.forestry-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.forestry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.forestry-hero-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(16, 28, 18, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.forestry-hero-card span,
.forestry-value-grid span {
  color: #d9edb5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.forestry-hero-card strong {
  display: block;
  margin: 14px 0;
  font-size: 28px;
  line-height: 1.28;
}

.forestry-hero-card p {
  margin: 0;
  font-size: 15px;
}

.forestry-section {
  padding: clamp(72px, 9vw, 126px) var(--page-x);
}

.forestry-section-head {
  max-width: 850px;
  margin-bottom: 36px;
}

.forestry-section-head p,
.forestry-split p,
.pilot-grid p {
  color: var(--muted);
  font-size: 17px;
}

.forestry-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.forestry-value-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(35, 42, 30, 0.08);
}

.forestry-value-grid span {
  color: var(--moss);
}

.forestry-value-grid p,
.journey-rail p,
.pipeline-grid p {
  margin: 0;
  color: var(--muted);
}

.forestry-dark {
  color: #fff;
  background: #152419;
}

.forestry-dark .section-kicker {
  color: #d9edb5;
}

.forestry-dark p,
.forestry-dark .forestry-section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.journey-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.journey-rail article {
  padding: 28px;
  background: #1d3224;
}

.journey-rail b {
  color: #d9edb5;
  font-size: 13px;
}

.forestry-split,
.pilot-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.forestry-split img {
  width: 100%;
  max-height: 680px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow);
}

.data-layers {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.data-layers span {
  padding: 14px 18px;
  border-left: 3px solid var(--moss);
  background: var(--paper);
  color: var(--forest);
  font-weight: 900;
}

.forestry-letters {
  background: var(--mist);
}

.letter-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.letter-showcase figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.letter-showcase img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.letter-showcase figcaption {
  padding: 14px 16px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
}

.forestry-pipeline {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  background: var(--paper);
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pipeline-grid article {
  padding: 20px;
  border-radius: 8px;
  background: #fff;
}

.pipeline-grid span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-weight: 900;
}

.pipeline-grid b {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 18px;
}

.forestry-reviews {
  background: var(--mist);
}

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

.review-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(24, 63, 42, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.review-card img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 0;
}

.review-card span {
  color: var(--moss);
  font-size: 13px;
  font-weight: 900;
}

.review-card h3 {
  margin: 12px 0;
  color: var(--forest);
  font-size: 22px;
}

.review-card p {
  flex: 1;
  color: var(--muted);
}

.review-card b {
  display: block;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-size: 14px;
}

.pilot-stats {
  display: grid;
  gap: 12px;
  margin: 0;
}

.pilot-stats div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.pilot-stats dt {
  color: #d9edb5;
  font-size: 34px;
  font-weight: 900;
}

.pilot-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.forest-weather {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(42px, 6vw, 78px) var(--page-x);
  background: var(--paper);
}

.forest-weather-link {
  cursor: pointer;
  transition: background 180ms ease;
}

.forest-weather-link:hover {
  background: #fff7e9;
}

.forest-weather-link:hover .forest-weather-panel {
  transform: translateY(-3px);
}

.forest-weather-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.forest-weather-main h2 {
  margin-bottom: 14px;
}

.forest-weather-main p {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.forest-weather-source {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.forest-weather-forestry-copy {
  margin: 18px 0 22px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.forest-weather-forestry-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.forest-weather-forestry-copy strong {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  word-break: keep-all;
}

.forest-weather-forestry-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.forest-weather-source span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.forest-weather-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  font-weight: 900;
}

.forest-weather-panel {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(24, 63, 42, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(24, 63, 42, 0.08), rgba(123, 143, 83, 0.06)),
    #fff;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.weather-now-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.weather-symbol {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-size: 34px;
  font-weight: 900;
}

.weather-label {
  display: block;
  color: var(--moss);
  font-size: 13px;
  font-weight: 900;
}

.weather-now-card strong {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1;
}

.weather-now-card small {
  font-size: 22px;
}

.weather-now-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.weather-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.weather-metrics div {
  padding: 16px 14px;
  background: var(--paper);
}

.weather-metrics dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.weather-metrics dd {
  margin: 4px 0 0;
  color: var(--forest);
  font-size: 23px;
  font-weight: 900;
}

.forest-weather blockquote {
  margin: 0;
  padding: 20px;
  border-left: 3px solid var(--moss);
  color: var(--forest);
  background: rgba(255, 250, 240, 0.74);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-panel {
    left: 20px;
    right: 20px;
  }

  .intro-grid,
  .split,
  .contact-section,
  .place-layout,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card.large {
    min-height: 520px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .instagram-head {
    align-items: flex-start;
  }

  .instagram-title-group {
    align-items: flex-start;
  }

  .forestry-hero,
  .forestry-split,
  .pilot-grid,
  .forestry-pipeline {
    grid-template-columns: 1fr;
  }

  .forestry-value-grid,
  .journey-rail,
  .pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .letter-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .forest-weather {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    grid-template-columns: 72px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .review-card img {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 13px;
    font-size: 14px;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 116px 24px 0;
    overflow: hidden;
  }

  .hero-image,
  .hero-overlay {
    height: 640px;
    bottom: auto;
  }

  h1 {
    font-size: 36px;
    line-height: 1.12;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    margin-bottom: 110px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button.secondary {
    margin-top: 14px;
  }

  .hero-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 24px 20px;
    border: 0;
    border-radius: 8px 8px 0 0;
    color: var(--ink);
    background: var(--paper);
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-panel dl {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-panel div {
    display: block;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-panel div:first-child {
    border-top: 0;
  }

  .hero-panel dt {
    color: var(--forest);
    font-size: 24px;
  }

  .hero-panel dd {
    color: var(--muted);
    font-size: 13px;
    text-align: left;
  }

  .intro-grid h2,
  .section h2,
  .contact-section h2 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .program-card,
  .program-card.large {
    min-height: 390px;
  }

  .place-image {
    min-height: 320px;
  }

  .gallery-head {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .instagram-head {
    display: block;
  }

  .instagram-title-group {
    display: block;
  }

  .instagram-logo-link {
    margin-bottom: 16px;
  }

  .instagram-logo-mark {
    width: 64px;
    height: 64px;
    border-radius: 19px;
  }

  .instagram-logo-mark::before {
    width: 29px;
    height: 29px;
    border-width: 4px;
    border-radius: 10px;
  }

  .instagram-logo-mark::after {
    top: 17px;
    right: 17px;
    width: 7px;
    height: 7px;
  }

  .instagram-logo-mark span {
    width: 10px;
    height: 10px;
    border-width: 4px;
  }

  .instagram-follow-copy {
    font-size: 14px;
  }

  .instagram-link {
    margin-top: 14px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .instagram-card span {
    opacity: 1;
    transform: none;
  }

  .forestry-hero {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-height: 0;
    padding: 118px 18px 54px;
    overflow: hidden;
  }

  .forestry-hero h1 {
    font-size: 38px;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .forestry-hero p,
  .forestry-hero-card strong,
  .forestry-hero-card p,
  .forestry-section h2 {
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .forestry-hero-copy,
  .forestry-hero-card {
    min-width: 0;
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .forestry-hero h1,
  .forestry-hero p,
  .forestry-hero-card strong,
  .forestry-section h2 {
    max-width: calc(100vw - 36px);
  }

  .forestry-actions .button.secondary {
    margin-top: 14px;
  }

  .forestry-hero-card {
    padding: 22px;
  }

  .forestry-hero-card strong {
    font-size: 23px;
  }

  .forestry-value-grid,
  .journey-rail,
  .pipeline-grid,
  .letter-showcase {
    grid-template-columns: 1fr;
  }

  .journey-rail {
    gap: 10px;
    background: transparent;
  }

  .journey-rail article,
  .forestry-value-grid article {
    padding: 22px;
  }

  .letter-showcase img {
    aspect-ratio: auto;
  }

  .pilot-stats dt {
    font-size: 28px;
  }

  .forest-weather {
    grid-template-columns: 1fr;
    padding: 42px 18px;
  }

  .forest-weather-main h2 {
    font-size: 28px;
  }

  .forest-weather-source {
    display: grid;
    grid-template-columns: 1fr;
  }

  .forest-weather-forestry-copy strong {
    font-size: 25px;
  }

  .forest-weather-forestry-copy p {
    font-size: 16px;
  }

  .forest-weather-panel {
    padding: 20px;
  }

  .weather-now-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .weather-symbol {
    width: 64px;
    height: 64px;
    font-size: 25px;
  }

  .weather-now-card strong {
    font-size: 52px;
  }

  .weather-metrics {
    grid-template-columns: 1fr;
  }

  .forest-weather blockquote {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
