:root {
  --black: #0a0a0a;
  --panel: #111111;
  --panel-2: #161616;
  --gold: #c9a24b;
  --gold-light: #e6c877;
  --gold-grad: linear-gradient(135deg, #e6c877 0%, #c9a24b 50%, #9c7a2f 100%);
  --text: #f2f0ea;
  --muted: #a9a49a;
  --line: rgba(201, 162, 75, 0.25);
  --container: 1160px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background: var(--black);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; line-height: 1.15; }

a { color: inherit; text-decoration: none; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
}
.nav.scrolled { background: rgba(10, 10, 10, 0.9); padding: 12px 0; border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { height: 64px; width: auto; display: block; transition: height .3s ease; }
.nav.scrolled .nav__logo { height: 54px; }
.nav__menu { display: flex; align-items: center; gap: 36px; }
.nav__link {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text); font-weight: 400; position: relative; transition: color .25s ease;
}
.nav__link:hover { color: var(--gold-light); }
.nav__link:not(.nav__link--cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav__link:not(.nav__link--cta):hover::after { width: 100%; }
.nav__link--cta {
  border: 1px solid var(--gold); padding: 10px 20px; border-radius: 2px; color: var(--gold-light);
}
.nav__link--cta:hover { background: var(--gold); color: #000; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--gold-light); transition: .3s; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; padding: 15px 32px; border-radius: 2px; cursor: pointer; transition: all .25s ease;
  border: 1px solid transparent;
}
.btn--gold { background: var(--gold-grad); color: #1a1204; border-color: var(--gold); }
.btn--gold:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(242,240,234,.4); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--full { width: 100%; text-align: center; border: 0; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: url("assets/hero-houston.png") center/cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.72) 0%, rgba(10,10,10,.55) 45%, rgba(10,10,10,.92) 100%);
}
.hero__content { position: relative; max-width: 760px; padding-top: 90px; padding-bottom: 60px; }
.hero__eyebrow {
  color: var(--gold-light); letter-spacing: .26em; text-transform: uppercase;
  font-size: .78rem; margin-bottom: 20px;
}
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 22px; }
.hero__subtitle { font-size: 1.12rem; color: var(--muted); max-width: 620px; margin-bottom: 38px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--gold-light); font-size: 1.8rem; animation: bob 2s infinite; z-index: 2;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- SECTIONS ---------- */
.section { padding: 110px 0; }
.section--dark { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__eyebrow {
  display: inline-block; color: var(--gold); letter-spacing: .22em; text-transform: uppercase;
  font-size: .76rem; margin-bottom: 14px;
}
.section__title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 20px; }
.section__head { max-width: 660px; margin: 0 auto 60px; text-align: center; }
.section__lead { color: var(--muted); }

/* ---------- ABOUT ---------- */
.about { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.about__media img {
  width: 100%; border-radius: 4px; border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.about__text p { color: var(--muted); margin-bottom: 18px; }
.about__stats { display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: "Cormorant Garamond", serif; font-size: 2rem; font-weight: 700;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------- SERVICES ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--panel-2); border: 1px solid rgba(255,255,255,.06); border-radius: 4px;
  padding: 40px 32px; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 18px 50px rgba(0,0,0,.55); }
.card__icon {
  font-size: 1.8rem; color: var(--gold-light); width: 60px; height: 60px; display: flex;
  align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 4px; margin-bottom: 24px;
}
.card__title { font-size: 1.5rem; margin-bottom: 14px; }
.card__text { color: var(--muted); font-size: .98rem; }

/* ---------- CONTACT ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__info p { color: var(--muted); margin-bottom: 28px; }
.contact__list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact__list li { border-bottom: 1px solid rgba(255,255,255,.06); padding-bottom: 14px; }
.contact__label {
  display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.contact__list a:hover { color: var(--gold-light); }
.contact__form { background: var(--panel-2); border: 1px solid rgba(255,255,255,.06); border-radius: 4px; padding: 36px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: var(--black); border: 1px solid rgba(255,255,255,.12); border-radius: 3px;
  padding: 13px 14px; color: var(--text); font-family: inherit; font-size: .95rem; transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; }
.form__note { margin-top: 16px; color: var(--gold-light); font-size: .9rem; text-align: center; }

/* ---------- FOOTER ---------- */
.footer { background: #060606; border-top: 1px solid var(--line); padding: 40px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__logo { height: 72px; width: auto; }
.footer__copy { color: var(--muted); font-size: .84rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about, .contact { grid-template-columns: 1fr; gap: 40px; }
  .services { grid-template-columns: 1fr; }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px;
    background: #0c0c0c; border-left: 1px solid var(--line); padding: 0 36px; transition: right .35s ease;
  }
  .nav__menu.open { right: 0; }
  .nav__link { font-size: 1rem; }
  .section { padding: 80px 0; }
}
