/* KMEC landing page: calm island welcome, scoped away from operational portals. */
body.landing-page {
  --landing-forest: #2f6b50;
  --landing-ocean: #356c68;
  --landing-lagoon: #b8ded8;
  --landing-seafoam: #e8f5ee;
  --landing-sun: #f1d48b;
  --landing-coral: #d89476;
  --landing-sand: #fff9ee;
  min-height: 100vh;
  background:
    radial-gradient(circle at 6% 18%, rgba(184, 222, 216, .32), transparent 27rem),
    radial-gradient(circle at 92% 86%, rgba(241, 212, 139, .2), transparent 25rem),
    linear-gradient(180deg, #f5faf7 0%, #fffcf6 100%);
}

body.landing-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .34;
  background-image: radial-gradient(circle, rgba(47, 107, 80, .11) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: linear-gradient(135deg, #000, transparent 34%, transparent 70%, #000);
}

body.landing-page .landing-topbar {
  border-bottom-color: rgba(47, 107, 80, .1);
  background: rgba(255, 254, 250, .9);
  box-shadow: 0 8px 28px rgba(32, 49, 41, .045);
}

body.landing-page .landing-topbar .brand img {
  border: 1px solid rgba(47, 107, 80, .08);
  box-shadow: 0 8px 24px rgba(32, 49, 41, .07);
}

body.landing-page .landing-shell {
  width: min(1240px, calc(100% - 32px));
  padding-top: clamp(18px, 3vw, 34px);
}

body.landing-page .guest-first-landing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(480px, 1.18fr);
  gap: clamp(18px, 2.4vw, 30px);
  min-height: 0;
  align-items: stretch;
  overflow: hidden;
  padding: clamp(16px, 2.4vw, 28px);
  border: 1px solid rgba(47, 107, 80, .1);
  border-radius: 34px;
  background: rgba(255, 254, 250, .84);
  box-shadow: 0 24px 68px rgba(32, 49, 41, .09);
  backdrop-filter: blur(16px);
}

body.landing-page .guest-first-landing::before {
  content: "";
  position: absolute;
  display: block;
  width: 260px;
  height: 260px;
  top: -150px;
  right: 34%;
  border-radius: 50%;
  background: rgba(241, 212, 139, .25);
  filter: blur(2px);
  pointer-events: none;
}

body.landing-page .landing-guest-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  min-width: 0;
  min-height: 540px;
  overflow: hidden;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(47, 107, 80, .1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 8%, rgba(241, 212, 139, .28), transparent 12rem),
    linear-gradient(155deg, #f7fbf8 0%, #edf7f1 55%, #e6f3ee 100%);
}

body.landing-page .landing-guest-intro::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 70px;
  top: 28px;
  right: -72px;
  border-radius: 100% 0 100% 0;
  background: rgba(93, 155, 99, .1);
  transform: rotate(-22deg);
  pointer-events: none;
}

body.landing-page .landing-welcome-copy,
body.landing-page .landing-welcome-art {
  position: relative;
  z-index: 2;
}

body.landing-page .landing-welcome-copy {
  display: grid;
  align-content: start;
}

body.landing-page .landing-welcome-copy .eyebrow,
body.landing-page .landing-paths-heading .eyebrow,
body.landing-page .landing-tools-heading .eyebrow {
  margin: 0 0 10px;
  color: #8f6a24;
  letter-spacing: .16em;
}

body.landing-page .landing-welcome-copy h1 {
  max-width: 9ch;
  margin: 0;
  color: var(--landing-forest);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3rem, 5.2vw, 4.6rem);
  font-weight: 650;
  line-height: .91;
  letter-spacing: -.055em;
}

body.landing-page .landing-welcome-line {
  max-width: 22ch;
  margin: 18px 0 8px;
  color: var(--landing-ocean);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.18;
}

body.landing-page .landing-welcome-copy .hero-lede {
  max-width: 35ch;
  margin: 0;
  color: #52645c;
  font-size: 1rem;
  line-height: 1.55;
}

body.landing-page .landing-welcome-art {
  display: grid;
  align-self: end;
  gap: 10px;
  width: 100%;
}

body.landing-page .landing-property-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(116px, .85fr);
  gap: 10px;
  min-width: 0;
}

body.landing-page .landing-feature-photo,
body.landing-page .landing-photo-pair figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 107, 80, .13);
  background: #fffdf8;
  box-shadow: 0 12px 28px rgba(32, 49, 41, .09);
}

body.landing-page .landing-feature-photo {
  min-height: 250px;
  border-radius: 120px 24px 24px 24px;
}

body.landing-page .landing-property-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

body.landing-page .landing-feature-photo img {
  position: absolute;
  inset: 0;
  object-position: 54% 48%;
}

body.landing-page .landing-feature-photo::after,
body.landing-page .landing-photo-pair figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.landing-page .landing-feature-photo::after {
  background: linear-gradient(180deg, transparent 42%, rgba(24, 51, 41, .68));
}

body.landing-page .landing-feature-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 20px;
  display: grid;
  gap: 2px;
  color: #fff;
  text-shadow: 0 1px 12px rgba(13, 31, 24, .42);
}

body.landing-page .landing-feature-photo figcaption span {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.landing-page .landing-feature-photo figcaption strong {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.12;
}

body.landing-page .landing-photo-pair {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

body.landing-page .landing-photo-pair figure {
  min-height: 120px;
  border-radius: 20px;
}

body.landing-page .landing-photo-pair figure::after {
  background: linear-gradient(180deg, transparent 45%, rgba(24, 51, 41, .66));
}

body.landing-page .landing-photo-pair figcaption {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 9px;
  left: 10px;
  color: #fff;
  font-size: .71rem;
  font-weight: 850;
  line-height: 1.2;
  text-shadow: 0 1px 9px rgba(13, 31, 24, .46);
}

body.landing-page .landing-property-gallery :is(figure:hover, figure:focus-within) img {
  transform: scale(1.025);
}

body.landing-page .landing-breath-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0;
  color: #52645c;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .015em;
}

body.landing-page .landing-breath-note > span {
  width: 9px;
  height: 9px;
  border: 2px solid var(--landing-ocean);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(53, 108, 104, .1);
}

body.landing-page .landing-guest-paths {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
  padding: clamp(4px, 1vw, 10px) 0;
}

body.landing-page .landing-paths-heading {
  margin-bottom: 4px;
}

body.landing-page .landing-paths-heading .eyebrow {
  margin-bottom: 6px;
}

body.landing-page .landing-paths-heading h2,
body.landing-page .landing-tools-heading h2 {
  margin: 0;
  color: var(--landing-forest);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -.035em;
}

body.landing-page .landing-paths-heading > p:last-child {
  margin: 7px 0 0;
  color: #536b61;
  line-height: 1.45;
}

body.landing-page .landing-guest-path {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 42px;
  gap: 15px;
  align-items: center;
  min-height: 126px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(47, 107, 80, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  color: var(--landing-forest);
  text-decoration: none;
  box-shadow: 0 11px 26px rgba(32, 49, 41, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body.landing-page .landing-guest-path::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  top: -82px;
  right: -66px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  pointer-events: none;
}

body.landing-page .landing-guest-path:hover {
  border-color: rgba(47, 107, 80, .3);
  box-shadow: 0 16px 34px rgba(32, 49, 41, .1);
  transform: translateY(-3px);
}

body.landing-page .landing-guest-path:focus-visible,
body.landing-page .landing-ops-summary:focus-visible,
body.landing-page .landing-topbar :is(a, button):focus-visible {
  outline: 3px solid #a64f34;
  outline-offset: 4px;
}

body.landing-page .landing-guest-path.primary {
  border-color: rgba(47, 107, 80, .48);
  background: linear-gradient(135deg, #2f6b50 0%, #356c68 100%);
  color: #fff;
}

body.landing-page .landing-guest-path.program-path {
  border-color: rgba(53, 108, 104, .18);
  background: linear-gradient(135deg, #f6fbf8, #e8f5ee);
}

body.landing-page .landing-guest-path.coordinator-path {
  border-color: rgba(143, 106, 36, .18);
  background: linear-gradient(135deg, #fffdf8, #fff2d7);
}

body.landing-page .landing-path-number {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 41% 59% 64% 36% / 52% 42% 58% 48%;
  background: #dcefe8;
  color: var(--landing-forest);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: none;
  transform: rotate(-5deg);
}

body.landing-page .primary .landing-path-number {
  background: #f0c2ad;
  color: var(--landing-forest);
}

body.landing-page .program-path .landing-path-number {
  background: #b8ded8;
}

body.landing-page .coordinator-path .landing-path-number {
  background: var(--landing-sun);
}

body.landing-page .landing-path-copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 5px;
  color: inherit;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

body.landing-page .landing-path-copy .landing-path-type {
  color: #6b5a39;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.landing-page .primary .landing-path-copy .landing-path-type {
  color: #fff3d5;
}

body.landing-page .landing-path-copy strong {
  color: inherit;
  font-size: clamp(1.16rem, 2vw, 1.4rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  text-transform: none;
}

body.landing-page .landing-path-copy small {
  max-width: 52ch;
  color: #496057;
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.42;
  text-transform: none;
}

body.landing-page .primary .landing-path-copy small {
  color: rgba(255, 255, 255, .9);
}

body.landing-page .landing-path-arrow {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(47, 107, 80, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  color: var(--landing-forest);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  transition: transform .2s ease;
}

body.landing-page .landing-guest-path:hover .landing-path-arrow {
  transform: translateX(3px);
}

body.landing-page .landing-access-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 4px 0;
  color: #536b61;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.35;
}

body.landing-page .landing-access-note > span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  background: #e8f5ee;
  color: var(--landing-ocean);
  font-size: .72rem;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

body.landing-page .landing-tools-section {
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1.6fr);
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(47, 107, 80, .1);
  border-radius: 26px;
  background: rgba(255, 253, 248, .76);
  box-shadow: 0 14px 38px rgba(32, 49, 41, .06);
  backdrop-filter: blur(12px);
}

body.landing-page .landing-tools-heading .eyebrow {
  margin-bottom: 5px;
}

body.landing-page .landing-tools-heading h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
}

body.landing-page .landing-guest-tools {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

body.landing-page .landing-guest-tools > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(47, 107, 80, .1);
  border-radius: 18px;
  background: #fffefb;
}

body.landing-page .landing-tool-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #e8f5ee;
  color: var(--landing-ocean);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

body.landing-page .landing-guest-tools > div:nth-child(2) .landing-tool-icon {
  background: #f8e2d5;
  color: #804b36;
}

body.landing-page .landing-guest-tools > div:nth-child(3) .landing-tool-icon {
  background: #f8edc9;
  color: #75551f;
}

body.landing-page .landing-guest-tools > div:nth-child(4) .landing-tool-icon {
  background: #dcebef;
  color: #315f6b;
}

body.landing-page .landing-guest-tools > div > span:last-child {
  display: grid;
  gap: 2px;
  min-width: 0;
}

body.landing-page .landing-guest-tools strong {
  color: var(--landing-forest);
  font-size: .92rem;
}

body.landing-page .landing-guest-tools small {
  color: #63736c;
  font-size: .75rem;
  line-height: 1.25;
}

body.landing-page .landing-operations-card {
  margin-top: 16px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(47, 107, 80, .1);
  border-radius: 24px;
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 14px 38px rgba(32, 49, 41, .055);
}

body.landing-page .landing-ops-summary {
  min-height: 88px;
  padding: 18px 22px;
}

body.landing-page .landing-ops-summary > span:first-child {
  gap: 4px;
}

body.landing-page .landing-team-label {
  color: #8f6a24;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.landing-page .landing-ops-summary strong {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 1.15rem;
}

body.landing-page .landing-ops-summary small {
  color: #63736c;
}

body.landing-page .landing-ops-toggle {
  min-width: 78px;
  border-color: rgba(47, 107, 80, .16);
  background: #edf6f1;
  text-align: center;
}

body.landing-page .landing-operations-card[open] .landing-ops-toggle {
  background: var(--landing-ocean);
}

body.landing-page .landing-ops-grid {
  padding: 18px 22px 22px;
  background: rgba(223, 243, 234, .34);
}

body.landing-page .landing-ops-grid a {
  border-radius: 16px;
  background: rgba(255, 254, 251, .9);
}

@media (max-width: 1080px) {
  body.landing-page .guest-first-landing {
    grid-template-columns: minmax(0, 1fr);
  }

  body.landing-page .landing-guest-intro {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    grid-template-rows: auto;
    align-items: center;
    min-height: 0;
  }

  body.landing-page .landing-welcome-art {
    align-self: center;
  }

  body.landing-page .landing-guest-paths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.landing-page .landing-paths-heading,
  body.landing-page .landing-guest-path.primary,
  body.landing-page .landing-access-note {
    grid-column: 1 / -1;
  }

  body.landing-page .landing-guest-path:not(.primary) {
    grid-template-columns: 48px minmax(0, 1fr) 36px;
    min-height: 138px;
    padding: 16px;
  }

  body.landing-page .landing-tools-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
}

@media (max-width: 720px) {
  body.landing-page::before {
    display: none;
  }

  body.landing-page .landing-shell {
    width: min(100% - 16px, 1240px);
    padding-top: 10px;
  }

  body.landing-page .guest-first-landing {
    gap: 14px;
    padding: 10px;
    border-radius: 26px;
  }

  body.landing-page .landing-guest-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 22px 18px 16px;
    border-radius: 20px;
  }

  body.landing-page .landing-guest-intro::after {
    width: 150px;
    right: -85px;
  }

  body.landing-page .landing-welcome-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 13vw, 3.45rem);
  }

  body.landing-page .landing-welcome-line {
    margin-top: 14px;
    font-size: 1.2rem;
  }

  body.landing-page .landing-welcome-copy .hero-lede {
    font-size: .95rem;
  }

  body.landing-page .landing-property-gallery {
    grid-template-columns: minmax(0, 1.6fr) minmax(108px, .8fr);
  }

  body.landing-page .landing-feature-photo {
    min-height: 214px;
    border-radius: 92px 18px 18px 18px;
  }

  body.landing-page .landing-photo-pair figure {
    min-height: 102px;
  }

  body.landing-page .landing-breath-note {
    font-size: .78rem;
  }

  body.landing-page .landing-guest-paths {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 10px 4px 4px;
  }

  body.landing-page .landing-paths-heading,
  body.landing-page .landing-guest-path.primary,
  body.landing-page .landing-access-note {
    grid-column: auto;
  }

  body.landing-page .landing-paths-heading {
    padding: 0 4px 4px;
  }

  body.landing-page .landing-paths-heading h2 {
    font-size: 1.7rem;
  }

  body.landing-page .landing-guest-path,
  body.landing-page .landing-guest-path:not(.primary) {
    grid-template-columns: 48px minmax(0, 1fr) 36px;
    gap: 12px;
    min-height: 118px;
    padding: 14px;
    border-radius: 18px;
  }

  body.landing-page .landing-path-number {
    width: 46px;
    height: 46px;
  }

  body.landing-page .landing-path-arrow {
    width: 34px;
    height: 34px;
  }

  body.landing-page .landing-path-copy strong {
    font-size: 1.13rem;
  }

  body.landing-page .landing-path-copy small {
    font-size: .79rem;
    line-height: 1.35;
  }

  body.landing-page .landing-access-note {
    padding: 2px 3px 6px;
  }

  body.landing-page .landing-tools-section {
    gap: 14px;
    margin-top: 12px;
    padding: 17px 14px;
    border-radius: 22px;
  }

  body.landing-page .landing-tools-heading h2 {
    font-size: 1.48rem;
  }

  body.landing-page .landing-guest-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.landing-page .landing-guest-tools > div {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px;
    min-height: 70px;
    padding: 9px;
    border-radius: 15px;
  }

  body.landing-page .landing-tool-icon {
    width: 32px;
    height: 32px;
    font-size: .88rem;
  }

  body.landing-page .landing-operations-card {
    margin-top: 12px;
    border-radius: 20px;
  }

  body.landing-page .landing-ops-summary {
    gap: 12px;
    padding: 16px;
  }

  body.landing-page .landing-ops-toggle {
    width: auto;
    min-width: 92px;
  }
}

@media (max-width: 390px) {
  body.landing-page .landing-property-gallery {
    grid-template-columns: 1fr;
  }

  body.landing-page .landing-feature-photo {
    min-height: 205px;
    border-radius: 78px 18px 18px 18px;
  }

  body.landing-page .landing-photo-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  body.landing-page .landing-photo-pair figure {
    min-height: 108px;
  }

  body.landing-page .landing-path-copy small {
    font-size: .76rem;
  }

  body.landing-page .landing-guest-tools strong {
    font-size: .84rem;
  }

  body.landing-page .landing-guest-tools small {
    font-size: .68rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  body.landing-page .landing-guest-path {
    animation: landing-arrive .5s ease both;
  }

  body.landing-page .landing-guest-path:nth-of-type(2) {
    animation-delay: .06s;
  }

  body.landing-page .landing-guest-path:nth-of-type(3) {
    animation-delay: .12s;
  }

}

@media (prefers-reduced-motion: reduce) {
  body.landing-page *,
  body.landing-page *::before,
  body.landing-page *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: .01ms !important;
  }
}

@keyframes landing-arrive {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
