:root {
  --ll-ink: #062636;
  --ll-green: #66a91d;
  --ll-green-dark: #4c8510;
  --ll-gold: #d8a63e;
  --ll-gold-light: #edc56d;
  --ll-white: #ffffff;
  --ll-overlay: rgba(2, 18, 28, 0.52);
  --ll-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  color: var(--ll-ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}
button, input { font: inherit; }
button { cursor: pointer; }

.site-header {
  background: var(--ll-white);
  border-bottom: 2px solid var(--ll-green);
  position: relative;
  z-index: 20;
}

.header-inner {
  min-height: 150px;
  padding: 24px 32px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.brand { display: inline-block; line-height: 0; }
.brand img {
  display: block;
  width: min(360px, 78vw);
  height: auto;
}

.member-login-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ll-green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.member-login-link:hover,
.member-login-link:focus-visible { color: var(--ll-gold); }
.member-login-icon { margin-right: 7px; color: var(--ll-ink); }

.hero {
  position: relative;
  min-height: calc(100vh - 245px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-content {
  /* width: min(1280px, 84vw); */
  margin: 0 auto;
  padding: 90px 24px 80px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 5vw, 58px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.02em;
}


.gold-rule {
  width: 170px;
  height: 22px;
  margin: 17px auto 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gold-rule::before,
.gold-rule::after {
  content: '';
  height: 1px;
  flex: 1;
  background: var(--ll-gold-light);
}
.gold-rule span {
  width: 9px;
  height: 9px;
  margin: 0 8px;
  border: 1px solid var(--ll-gold-light);
  transform: rotate(45deg);
}

.hero-intro {
  width: min(760px, 100%);
  margin: 0 auto;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.45;
}

.features {
  width: min(700px, 100%);
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature {
  min-height: 118px;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-left: 1px solid rgba(216, 166, 62, 0.55);
}
.feature:first-child { border-left: 0; }
.feature svg {
  width: 50px;
  height: 50px;
  margin-bottom: 9px;
  fill: none;
  stroke: var(--ll-gold-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.32));
}
.feature span { font-size: 17px; line-height: 1.25; }

.site-footer {
  background: black;
  border-top: 2px solid var(--ll-green);
}
.footer-inner {
  min-height: 94px;
  padding: 16px 24px;
  text-align: center;
  display: grid;
  align-content: center;
  gap: 7px;
  color: white;
}

}
.footer-inner a {
  color: white;
}

.footer-inner p { margin: 0; }
.footer-inner p:first-child {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
}
.cities {
  color: var(--ll-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 15px;
}
.cities span { color: var(--ll-green); padding: 0 10px; }

.portal-overlay[hidden] { display: none; }
.portal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 15, 25, 0.46);
  backdrop-filter: blur(3px);
  display: grid;
  place-items: center;
  padding: 24px;
}
.portal-card {
  position: relative;
  width: min(390px, 100%);
  background: #fff;
  border: 1px solid var(--ll-gold);
  border-radius: 14px;
  box-shadow: var(--ll-shadow);
  padding: 22px 24px 24px;
  color: var(--ll-ink);
}
.portal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--ll-ink);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}
.portal-close:hover,
.portal-close:focus-visible { color: var(--ll-green); }
.portal-card h2 {
  margin: 0;
  padding: 0 34px;
  text-align: center;
  color: var(--ll-green-dark);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
}
.portal-rule {
  height: 1px;
  margin: 12px 0 18px;
  background: linear-gradient(to right, transparent, var(--ll-gold), transparent);
}
.portal-card label {
  display: block;
  margin: 13px 0 5px;
  font-weight: 600;
  font-size: 14px;
}
.portal-card input {
  width: 100%;
  height: 40px;
  padding: 8px 10px;
  color: var(--ll-ink);
  background: #fff;
  border: 1px solid #8db461;
  border-radius: 2px;
  outline: none;
}
.portal-card input:focus {
  border-color: var(--ll-green-dark);
  box-shadow: 0 0 0 3px rgba(102, 169, 29, 0.14);
}
.portal-submit {
  display: block;
  min-width: 164px;
  margin: 22px auto 0;
  padding: 11px 22px;
  border: 0;
  border-radius: 3px;
  color: #2b210e;
  background: linear-gradient(#ebbf62, #d8a13b);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  text-transform: uppercase;
}
.portal-submit:hover,
.portal-submit:focus-visible { filter: brightness(1.05); }
.portal-error {
  margin: 14px 0 0;
  text-align: center;
  color: #c60000;
  font-size: 14px;
}
body.portal-open { overflow: hidden; }

.lozenge {
  font-family: 'Wingdings', sans-serif;
  color: #22c55e;
}

.desktop-title { display: inline; }
.mobile-title { display: none; }

@media (max-width: 900px) {
  .header-inner { min-height: 128px; padding: 18px 20px 12px; }
  .brand img { width: min(320px, 82vw); }
  .member-login-link { margin-left: 0; }
  .hero { min-height: 720px; background-position: 52% center; }
  .hero-content { width: 94vw; padding: 70px 16px 60px; }
  .features { grid-template-columns: repeat(2, 1fr); width: min(520px, 100%); gap: 22px 0; }
  .feature:nth-child(3) { border-left: 0; }
}

@media (max-width: 560px) {
  .header-inner { align-items: center; }
  .member-login-link { margin-left: 0; }
  .hero { min-height: 760px; background-position: 30% 30%; }
  .hero-content { padding-top: 58px; }
  .hero h1 { font-size: clamp(40px, 12vw, 58px); line-height: 1.02; }
  .desktop-title { display: none; }
  .mobile-title { display: block; }
  .mobile-title-line { display: block; }
  .mobile-title-gap { margin-top: 0.7em; }
  .hero-intro { font-size: 17px; }
  .features { gap: 18px 0; }
  .feature { padding: 0 9px; }
  .feature span { font-size: 15px; }
  .cities { font-size: 12px; letter-spacing: 0.11em; line-height: 1.7; }
  .cities span { padding: 0 4px; }
}
