/* =========================================
   LUOMA VENTURES, INC. — Site Styles
   Primary Green: #1B5C38 | Gold: #C9A84C | Ivory: #F7F5F0
   Fonts: Cormorant Garamond (serif) + Jost (sans)
   ========================================= */

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

:root {
  --green:       #1B5C38;
  --green-dark:  #0f3d24;
  --green-mid:   #246e44;
  --green-light: #e8f2ec;
  --gold:        #C9A84C;
  --gold-light:  #dfc47a;
  --ivory:       #F7F5F0;
  --ivory-dark:  #e8e4da;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #444444;
  --text-light:  #777777;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.75;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

/* ── NAVIGATION ── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-brand-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ivory);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(247,245,240,0.85);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  border-bottom: none;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-links a.nav-cta:hover {
  background: var(--gold-light);
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(201,168,76,0.3);
    padding: 0.5rem 0;
  }

  .nav-links.open { display: flex; }

  .nav-links li { border-bottom: 1px solid rgba(201,168,76,0.12); }

  .nav-links a {
    display: block;
    padding: 0.85rem 2rem;
    border-bottom: none;
  }

  .nav-links a.nav-cta {
    margin: 0.5rem 2rem;
    display: inline-block;
    padding: 0.5rem 1rem;
  }
}

/* ── HERO ── */

.hero {
  min-height: 100vh;
  background: var(--green-dark);
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(36,110,68,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(201,168,76,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #0f3d24 0%, #1B5C38 50%, #0f3d24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-logo {
  width: clamp(140px, 18vw, 200px);
  height: auto;
  margin-bottom: 2.5rem;
  filter: brightness(0) invert(1) drop-shadow(0 4px 24px rgba(255,255,255,0.15));
}

.logo-fallback {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  border: 3px solid var(--gold);
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--ivory);
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 0 auto 2rem;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(247,245,240,0.65);
  letter-spacing: 0.05em;
  margin: 0;
}

/* ── SCROLL INDICATOR ── */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(247,245,240,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── SECTIONS ── */

.section {
  padding: 6rem 2rem;
}

.section-light {
  background: var(--ivory);
}

.section-dark {
  background: var(--green-dark);
  background-image: linear-gradient(135deg, #0f3d24 0%, #1B5C38 100%);
}

.section-dark h2 {
  color: var(--ivory);
}

.container {
  max-width: 1060px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section h2 {
  color: var(--green-dark);
  margin-bottom: 1.75rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 680px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* ── BAND DIVIDER ── */

.band-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold), var(--green-dark));
  opacity: 0.25;
}

/* ── ABOUT ── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  margin-top: 0.15rem;
}

.highlight-item h4 {
  color: var(--green-dark);
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.highlight-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── PORTFOLIO ── */

.property-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-top: 4px solid var(--gold);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 4px 30px rgba(15,61,36,0.07);
}

.property-badge {
  position: absolute;
  top: -1px;
  left: 2rem;
  background: var(--green);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 3px 3px;
}

.property-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}

.property-info h3 {
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  font-size: 1.5rem;
}

.property-location {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.property-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ivory-dark);
}

.property-detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}

.detail-value {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
}

.property-map {
  display: flex;
  align-items: stretch;
}

.map-placeholder {
  width: 100%;
  min-height: 200px;
  background: var(--green-light);
  border: 1px solid rgba(27,92,56,0.15);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  padding: 1.5rem;
}

.map-sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .property-grid { grid-template-columns: 1fr; }
  .property-details { grid-template-columns: 1fr 1fr; }
  .map-placeholder { min-height: 140px; }
}

/* ── STRUCTURE ── */

.structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.structure-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-left: 4px solid var(--gold);
  padding: 2rem 1.75rem;
  border-radius: 0 4px 4px 0;
}

.structure-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

.structure-card h4 {
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.structure-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .structure-grid { grid-template-columns: 1fr; }
}

/* ── LEADERSHIP ── */

.leader-card {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  background: rgba(247,245,240,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 2.5rem;
  max-width: 800px;
}

.leader-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.leader-info h3 {
  color: var(--ivory);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.leader-title {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.leader-info p {
  color: rgba(247,245,240,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 640px) {
  .leader-card { flex-direction: column; gap: 1.5rem; }
}

/* ── CORPORATE TABLE ── */

.corp-table-wrap {
  overflow-x: auto;
}

.corp-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 700px;
  font-size: 0.95rem;
}

.corp-table th {
  text-align: left;
  padding: 0.9rem 1.25rem;
  background: var(--ivory);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ivory-dark);
  width: 220px;
  white-space: nowrap;
}

.corp-table td {
  padding: 0.9rem 1.25rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--ivory-dark);
  font-weight: 500;
}

.corp-table tr:last-child th,
.corp-table tr:last-child td {
  border-bottom: none;
}

.corp-table tbody tr:hover td,
.corp-table tbody tr:hover th {
  background: rgba(27,92,56,0.03);
}

.placeholder {
  color: var(--text-light);
  font-style: italic;
  font-weight: 400;
}

/* ── CONTACT ── */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.contact-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
}

.contact-single {
  max-width: 300px;
}

.contact-item {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.contact-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.contact-item h4 {
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */

footer {
  background: var(--green-dark);
  border-top: 3px solid var(--gold);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ivory);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(247,245,240,0.4);
  letter-spacing: 0.05em;
  margin: 0;
}

.footer-copy a {
  color: rgba(247,245,240,0.5);
}

.footer-copy a:hover {
  color: var(--gold-light);
}
