/*
Theme Name: Andessa Legacy Holdings
Author: Andessa Legacy Holdings LLC
Description: Private asset management site matching the Lightbourn Legacy Holdings layout.
Version: 1.0
*/

:root {
  --black: #07090c;
  --panel: #10141a;
  --gold: #c4a35a;
  --gold-2: #e8d5a3;
  --ink: #ece7dc;
  --muted: #9a9284;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--black);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
}
h1, h2, h3, .brand strong, .brand em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}
a { color: var(--gold); text-decoration: none; }
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 7vw;
  background: rgba(7,9,12,0.92);
  border-bottom: 1px solid #1c232c;
}
.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--ink); }
.brand img { height: 48px; width: 48px; object-fit: cover; border-radius: 50%; }
.brand strong { display: block; font-size: 1.35rem; letter-spacing: 0.04em; }
.brand em { display: block; font-style: normal; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.nav nav a { margin-left: 1.4rem; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.nav nav a:hover { color: var(--gold); }

.hero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,9,12,0.82) 8%, rgba(7,9,12,0.25) 70%);
}
.hero-copy { position: relative; z-index: 1; padding: 8vw 7vw 10vh; max-width: 40rem; }
.eyebrow { letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.72rem; color: var(--gold); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.08; margin: 0.4rem 0 0.8rem; }
.sub { font-size: 1.15rem; color: var(--gold-2); margin: 0 0 1.5rem; }
.btn {
  display: inline-block; background: var(--gold); color: var(--black);
  padding: 0.75rem 1.4rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 0.75rem; font-weight: 500;
}
.btn:hover { background: var(--gold-2); }

.about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  padding: 5rem 7vw; align-items: center; background: var(--panel);
}
.about img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.about h2, .services h2, .contact h2 {
  font-size: 2.2rem; margin: 0 0 1rem; color: var(--gold-2);
}
.about p { color: var(--muted); }

.services { padding: 5rem 7vw; }
.services h2 { text-align: center; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem; }
.cards article { background: var(--panel); }
.cards img { width: 100%; height: 220px; object-fit: cover; display: block; }
.cards h3 { margin: 1rem 1.1rem 0.4rem; font-size: 1.35rem; }
.cards p { margin: 0 1.1rem 1.3rem; color: var(--muted); font-size: 0.92rem; }

.contact { padding: 4rem 7vw 3rem; background: var(--panel); max-width: 640px; }
.contact form { display: grid; gap: 0.8rem; margin: 1.2rem 0 2rem; }
.contact label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.contact input, .contact textarea {
  width: 100%; margin-top: 0.3rem; background: var(--black); border: 1px solid #2a3340;
  color: var(--ink); padding: 0.7rem; font: inherit;
}
.contact button { justify-self: start; background: var(--gold); border: 0; color: var(--black); padding: 0.7rem 1.4rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; }
.contact address { font-style: normal; color: var(--muted); line-height: 1.8; }
footer { padding: 1.4rem 7vw; font-size: 0.78rem; color: var(--muted); border-top: 1px solid #1c232c; }

@media (max-width: 800px) {
  .about, .cards { grid-template-columns: 1fr; }
  .nav nav { display: none; }
}
