/* ================================
   LENA Suites — style.css
   ================================ */

@import url('https://cdn.jsdelivr.net/npm/@fontsource/cormorant-garamond@5/300.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/cormorant-garamond@5/300-italic.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/cormorant-garamond@5/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/cormorant-garamond@5/400-italic.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/cormorant-garamond@5/600.css');

/* --- Variables --- */
:root {
  --forest-deep: #1A2E1A;
  --moss:        #3D6035;
  --sage:        #7A9E6E;
  --mist:        #C8D9B8;
  --cream:       #F5F0E8;
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body { height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--forest-deep);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 48px;
}

.nav-left { display: flex; }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  justify-self: center;
}

.nav-wordmark {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 8px;
  color: var(--cream);
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-link {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 217, 184, 0.65);
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

.nav-link:hover, .nav-link:focus {
  color: var(--mist);
  outline: none;
}

.contact-wrap { position: relative; }

.contact-popover {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  background: #213621;
  border: 1px solid rgba(200, 217, 184, 0.12);
  border-radius: 6px;
  padding: 18px 20px;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.contact-popover::before {
  content: '';
  position: absolute;
  top: -5px;
  right: 16px;
  width: 9px;
  height: 9px;
  background: #213621;
  border-top: 1px solid rgba(200, 217, 184, 0.12);
  border-left: 1px solid rgba(200, 217, 184, 0.12);
  transform: rotate(45deg);
}

.contact-wrap:hover .contact-popover,
.contact-wrap:focus-within .contact-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.popover-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 217, 184, 0.08);
  transition: opacity 0.15s ease;
}

.popover-item:first-child { padding-top: 0; }
.popover-item:last-child { border-bottom: none; padding-bottom: 0; }
.popover-item:hover { opacity: 0.7; }

.pi-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 217, 184, 0.35);
}

.pi-value {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 15px;
  color: var(--cream);
  letter-spacing: 0.03em;
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.bg-mark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 48px 80px;
  max-width: 680px;
}

.hero-mark { margin-bottom: 32px; }

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 22px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 58px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--mist);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: rgba(200, 217, 184, 0.45);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.hero-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(200, 217, 184, 0.28), transparent);
  margin: 0 auto 28px;
}

.hero-sub {
  font-size: 13px;
  color: rgba(200, 217, 184, 0.45);
  line-height: 1.9;
  max-width: 360px;
  letter-spacing: 0.03em;
}

.hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-top: 1px solid rgba(200, 217, 184, 0.07);
}

.hero-bottom-loc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 217, 184, 0.28);
}

.loc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.45;
}

.hero-bottom-copy {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(200, 217, 184, 0.18);
}

@media (max-width: 640px) {
  nav { padding: 20px 24px; }
  .hero-content { padding: 80px 24px 60px; }
  .hero-headline { font-size: 38px; }
  .hero-bottom { padding: 18px 24px; }
}
