/**
 * KentFarmsLodging™ public marketing
 * Amber harvest on slate night — farm / ATV lodging, not Tall Pines green or Volt lime.
 */
:root {
  --mk-bg: #10161f;
  --mk-surface: #1a2330;
  --mk-ink: #f3efe6;
  --mk-muted: #9aa4b0;
  --mk-border: #2c3848;
  --mk-amber: #e0a01a;
  --mk-amber-bright: #f0c14a;
  --mk-amber-ink: #1a1408;
  --mk-steel: #4a5d73;
  --mk-field: #3a5348;
  --mk-gold: #d4a84b;
  --mk-panel: rgba(26, 35, 48, 0.94);
  --mk-font-display: "Teko", "Arial Narrow", sans-serif;
  --mk-font-body: "Outfit", "Segoe UI", sans-serif;
  --mk-max: 1120px;
  --mk-touch: 44px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.mk-body {
  margin: 0;
  min-height: 100vh;
  color: var(--mk-ink);
  font-family: var(--mk-font-body);
  line-height: 1.5;
  background: var(--mk-bg);
  overflow-x: hidden;
}

a { color: var(--mk-amber-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

.mk-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.35rem;
  max-width: calc(var(--mk-max) + 6rem);
  margin: 0 auto;
}

.mk-top-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--mk-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mk-ink);
  text-decoration: none;
}

.mk-top-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
}

.mk-top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
}

.mk-top-nav a {
  color: rgba(243, 239, 230, 0.82);
  font-size: 0.95rem;
  text-decoration: none;
  min-height: var(--mk-touch);
  display: inline-flex;
  align-items: center;
}

.mk-top-nav a:hover { color: var(--mk-ink); }

.mk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--mk-touch);
  padding: 0 1.2rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: var(--mk-font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.mk-btn:hover { transform: translateY(-1px); }

.mk-btn-primary {
  background: var(--mk-amber);
  color: var(--mk-amber-ink) !important;
}

.mk-btn-primary:hover { background: var(--mk-amber-bright); }

.mk-btn-ghost {
  background: rgba(16, 22, 31, 0.4);
  border-color: rgba(224, 160, 26, 0.4);
  color: var(--mk-ink) !important;
  backdrop-filter: blur(6px);
}

.mk-btn-ghost:hover { border-color: var(--mk-amber); }

.mk-btn-block { width: 100%; }

.mk-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 6.5rem 1.35rem 4.5rem;
  overflow: hidden;
}

.mk-hero-plane {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(16, 22, 31, 0.25) 0%, rgba(16, 22, 31, 0.55) 45%, rgba(16, 22, 31, 0.94) 100%),
    radial-gradient(ellipse 80% 60% at 78% 28%, rgba(224, 160, 26, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 12% 72%, rgba(58, 83, 72, 0.35) 0%, transparent 50%),
    linear-gradient(152deg, #0a1018 0%, #152030 40%, #1a2838 70%, #0c121a 100%);
  animation: mk-sky 20s ease-in-out infinite alternate;
}

@keyframes mk-sky {
  from { filter: saturate(1) brightness(1); }
  to { filter: saturate(1.1) brightness(1.05); }
}

.mk-hero-plane::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224, 160, 26, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 160, 26, 0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 78%);
  animation: mk-grid-drift 30s linear infinite;
}

@keyframes mk-grid-drift {
  from { transform: translateY(0); }
  to { transform: translateY(-68px); }
}

.mk-hero-ridges {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 35% at 68% 80%, rgba(224, 160, 26, 0.22), transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(8, 12, 18, 0.2) 45%, rgba(8, 12, 18, 0.8) 100%);
}

.mk-hero-ridges::before {
  content: "";
  position: absolute;
  left: -4%;
  right: 28%;
  bottom: 0;
  height: 58%;
  background: #0b121a;
  clip-path: polygon(
    0% 100%, 0% 58%, 10% 44%, 18% 56%, 28% 32%, 38% 50%, 48% 26%,
    58% 48%, 68% 34%, 78% 52%, 88% 40%, 100% 55%, 100% 100%
  );
  opacity: 0.95;
}

.mk-hero-ridges::after {
  content: "";
  position: absolute;
  left: 62%;
  width: 26%;
  height: 46%;
  bottom: 0;
  clip-path: polygon(8% 100%, 8% 46%, 50% 14%, 92% 46%, 92% 100%);
  background: linear-gradient(180deg, #243044 0%, #0d141c 100%);
  box-shadow: inset 0 -18px 36px rgba(224, 160, 26, 0.14);
}

.mk-hero-glow {
  position: absolute;
  left: 72%;
  bottom: 16%;
  width: 2.8%;
  height: 7%;
  z-index: 2;
  background: rgba(240, 193, 74, 0.8);
  box-shadow: 0 0 30px 8px rgba(224, 160, 26, 0.4);
  animation: mk-window 4.2s ease-in-out infinite alternate;
}

@keyframes mk-window {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

.mk-hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--mk-max);
  margin: 0 auto;
}

.mk-hero-copy > *:not(.mk-hero-logo) {
  max-width: 40rem;
}

.mk-hero-logo {
  display: block;
  width: clamp(120px, 22vw, 200px);
  height: auto;
  margin: 0 0 1rem;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.mk-brand {
  margin: 0 0 0.65rem;
  font-family: var(--mk-font-display);
  font-size: clamp(2.8rem, 8.5vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--mk-amber);
}

.mk-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--mk-font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.12;
  max-width: 22ch;
  color: var(--mk-ink);
}

.mk-lede {
  margin: 0 0 1.6rem;
  color: var(--mk-muted);
  font-size: 1.1rem;
  max-width: 34rem;
}

.mk-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mk-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: mk-rise 0.85s ease forwards;
}

.mk-reveal-delay-1 { animation-delay: 0.1s; }
.mk-reveal-delay-2 { animation-delay: 0.2s; }
.mk-reveal-delay-3 { animation-delay: 0.32s; }
.mk-reveal-delay-4 { animation-delay: 0.44s; }

@keyframes mk-rise {
  to { opacity: 1; transform: translateY(0); }
}

.mk-section {
  padding: 4.25rem 1.35rem;
  background: var(--mk-bg);
}

.mk-section-alt {
  background:
    linear-gradient(180deg, #10161f 0%, #15202c 50%, #10161f 100%);
  border-top: 1px solid rgba(44, 56, 72, 0.85);
  border-bottom: 1px solid rgba(44, 56, 72, 0.85);
}

.mk-section-inner {
  max-width: var(--mk-max);
  margin: 0 auto;
}

.mk-section h2 {
  margin: 0 0 0.5rem;
  font-family: var(--mk-font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mk-section-lede {
  margin: 0 0 1.75rem;
  color: var(--mk-muted);
  max-width: 38rem;
  font-size: 1.05rem;
}

.mk-pillars {
  display: grid;
  gap: 1.75rem 2rem;
}

@media (min-width: 800px) {
  .mk-pillars { grid-template-columns: repeat(3, 1fr); }
}

.mk-pillar {
  border-top: 2px solid var(--mk-amber);
  padding-top: 0.85rem;
}

.mk-pillar h3 {
  margin: 0 0 0.4rem;
  font-family: var(--mk-font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mk-pillar p {
  margin: 0;
  color: var(--mk-muted);
}

.mk-audience-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  max-width: 40rem;
}

.mk-audience-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--mk-ink);
}

.mk-audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--mk-amber);
  border-radius: 2px;
}

.mk-highlights {
  display: grid;
  gap: 1.25rem 1.75rem;
  margin-bottom: 2.75rem;
}

@media (min-width: 720px) {
  .mk-highlights { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .mk-highlights { grid-template-columns: repeat(3, 1fr); }
}

.mk-highlight {
  padding: 0.25rem 0 0;
  border-top: 1px solid var(--mk-border);
}

.mk-highlight h3 {
  margin: 0.75rem 0 0.35rem;
  font-family: var(--mk-font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mk-amber-bright);
}

.mk-highlight p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.98rem;
}

#pricing {
  background:
    linear-gradient(180deg, #10161f 0%, #172230 50%, #10161f 100%);
  border-top: 1px solid rgba(44, 56, 72, 0.8);
  border-bottom: 1px solid rgba(44, 56, 72, 0.8);
}

.mk-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.25rem 2rem;
  margin-bottom: 1.35rem;
}

.mk-price-block {
  flex: 1 1 200px;
  max-width: 280px;
}

.mk-price-label {
  margin: 0 0 0.25rem;
  color: var(--mk-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.mk-price-figure {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: clamp(3.1rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--mk-amber);
}

.mk-price-note {
  margin: 0.35rem 0 0;
  color: var(--mk-muted);
}

.mk-price-or {
  align-self: center;
  margin: 0;
  color: var(--mk-gold);
  font-family: var(--mk-font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
}

.mk-american {
  margin: 0;
  font-weight: 600;
  color: var(--mk-ink);
}

.mk-feature-stack {
  display: grid;
  gap: 2rem 2.5rem;
}

@media (min-width: 800px) {
  .mk-feature-stack { grid-template-columns: 1fr 1fr; }
}

.mk-feature {
  padding-top: 0.25rem;
  border-top: 1px solid var(--mk-border);
  animation: mk-feature-in 0.7s ease both;
  animation-delay: calc(0.05s * var(--i, 0));
}

@keyframes mk-feature-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.mk-feature h3 {
  margin: 0.85rem 0 0.35rem;
  font-family: var(--mk-font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mk-feature-lede {
  margin: 0 0 0.75rem;
  color: var(--mk-muted);
  font-size: 0.98rem;
}

.mk-feature ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--mk-ink);
}

.mk-feature li { margin: 0.3rem 0; }
.mk-feature li::marker { color: var(--mk-amber); }

.mk-section-signup {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(224, 160, 26, 0.08), transparent 45%),
    #0e141c;
}

.mk-signup-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .mk-signup-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.mk-already { color: var(--mk-muted); }

.mk-signup-form {
  background: var(--mk-panel);
  border: 1px solid var(--mk-border);
  border-radius: 12px;
  padding: 1.25rem 1.35rem 1.5rem;
  display: grid;
  gap: 0.85rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.mk-signup-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: var(--mk-muted);
}

.mk-optional { opacity: 0.75; font-weight: 400; }

.mk-signup-form input,
.mk-signup-form select {
  width: 100%;
  min-height: var(--mk-touch);
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c121a;
  color: var(--mk-ink);
  font: inherit;
}

.mk-signup-form input:focus,
.mk-signup-form select:focus {
  outline: 2px solid rgba(224, 160, 26, 0.45);
  outline-offset: 1px;
  border-color: var(--mk-amber);
}

.mk-plan-fieldset {
  margin: 0.25rem 0 0;
  padding: 0.75rem 0 0;
  border: none;
  border-top: 1px solid var(--mk-border);
  display: grid;
  gap: 0.65rem;
}

.mk-plan-fieldset legend {
  padding: 0;
  margin-bottom: 0.35rem;
  color: var(--mk-ink);
  font-weight: 600;
}

.mk-plan-option {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  color: var(--mk-ink) !important;
}

.mk-plan-option:has(input:checked) {
  border-color: var(--mk-amber);
  background: rgba(224, 160, 26, 0.07);
}

.mk-plan-option input { width: auto; min-height: auto; margin-top: 0.25rem; }
.mk-plan-option strong { display: block; }
.mk-plan-option em {
  display: block;
  font-style: normal;
  color: var(--mk-muted);
  font-size: 0.9rem;
}

.mk-form-errors {
  background: rgba(255, 92, 92, 0.12);
  border: 1px solid rgba(255, 92, 92, 0.45);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #ffc9c0;
}

.mk-form-errors ul { margin: 0; padding-left: 1.1rem; }

.mk-fine {
  margin: 0;
  text-align: center;
  color: var(--mk-muted);
  font-size: 0.88rem;
}

.mk-footer {
  padding: 2rem 1.35rem 3rem;
  text-align: center;
  color: var(--mk-muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--mk-border);
  background: #0c1218;
}

.mk-footer p { margin: 0.35rem 0; }
.mk-footer strong { color: var(--mk-ink); }

@media (max-width: 640px) {
  .mk-top-nav a:not(.mk-btn) { display: none; }
  .mk-hero { padding-bottom: 3.25rem; }
  .mk-top-brand span { max-width: 11rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  .mk-hero-plane,
  .mk-hero-plane::before,
  .mk-hero-glow,
  .mk-reveal,
  .mk-feature {
    animation: none !important;
  }
  .mk-reveal { opacity: 1; transform: none; }
}
