/* ===================================================
   Monroe Concierge Home — Luxury Variant Stylesheet
   Onyx / Champagne Gold / Ivory · Cormorant Garamond + Montserrat
   =================================================== */

:root {
  --onyx: #0e0e10;
  --onyx-light: #1a1a1d;
  --onyx-soft: #242427;
  --gold: #c6a564;
  --gold-light: #e3cd9c;
  --gold-deep: #9c7c3f;
  --ivory: #f8f5ee;
  --ivory-deep: #efe7d4;
  --white: #ffffff;
  --text: #1c1b19;
  --text-muted: #6f675a;
  --border: #ddd2b4;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

/* gold ribbon accent at very top of viewport */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
  z-index: 300;
}

img { max-width: 100%; display: block; }

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: 3.2rem; font-weight: 500; }
h2 { font-size: 2.3rem; }
h3 { font-size: 1.35rem; font-weight: 600; }

p { margin-bottom: 14px; color: var(--text); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

/* ---------- Section variants ---------- */
.section { padding: 100px 0; }
.section--tight { padding: 60px 0; }
.section--cream { background: var(--ivory-deep); }
.section--navy { background: var(--onyx); color: var(--ivory); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--ivory); }
.section--navy p { color: #c9c2b2; }
.section--navy .eyebrow { color: var(--gold-light); }
.section--navy .card { background: var(--onyx-light); border-color: rgba(198,165,100,0.25); }
.section--navy .card h3 { color: var(--ivory); }
.section--navy .card p { color: #b9b2a2; }

.section-head {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
}

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--onyx);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(248,245,238,0.45);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline-dark:hover {
  background: var(--onyx);
  color: var(--ivory);
  border-color: var(--onyx);
}
.btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--onyx);
  border-bottom: 1px solid rgba(198,165,100,0.2);
}
.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-monogram {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-mark {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ivory);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links li a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d9d2c2;
  transition: color 0.2s ease;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--gold-light);
}
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 9px 20px;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--onyx) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--ivory);
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(circle at 50% 0%, #1c1c1f 0%, var(--onyx) 70%);
  color: var(--ivory);
  padding: 150px 0 130px;
  text-align: center;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.hero h1 { color: var(--ivory); font-weight: 500; }
.hero .lead {
  font-size: 1.18rem;
  color: #cdc6b6;
  max-width: 600px;
  margin: 0 auto 8px;
}
.hero .btn-row { justify-content: center; }

.page-hero {
  background: radial-gradient(circle at 50% 0%, #1c1c1f 0%, var(--onyx) 75%);
  color: var(--ivory);
  padding: 110px 0 90px;
  text-align: center;
}
.page-hero h1 { color: var(--ivory); font-weight: 500; max-width: 760px; margin: 0 auto; }
.page-hero p { color: #cdc6b6; max-width: 620px; margin: 18px auto 0; }
.page-hero .eyebrow { color: var(--gold-light); }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 38px 32px;
  box-shadow: none;
  transition: border-color 0.25s ease;
}
.card:hover { border-color: var(--gold); }
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: var(--gold-deep);
}
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

.list-clean li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text);
}
.list-clean li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-weight: 700;
}
.list-x li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text-muted);
}
.list-x li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* ---------- Tier / Pricing ---------- */
.tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 44px 42px;
  margin-bottom: 36px;
  box-shadow: none;
  position: relative;
}
.tier-card.featured {
  border-color: var(--gold);
}
.tier-card.featured::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
}
.tier-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.tier-name { margin-top: 6px; }
.tier-price {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
}
.tier-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}
.tier-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
}

.badge {
  display: inline-block;
  background: transparent;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  border-radius: 0;
  padding: 5px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

table.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.92rem;
}
table.price-table th,
table.price-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
table.price-table th {
  background: var(--ivory-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--text);
}
table.price-table tr:last-child td { border-bottom: none; }

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ---------- Forms ---------- */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
input, textarea, select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--white);
  color: var(--text);
}
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-notice {
  background: #f7e9e3;
  border: 1px solid #b3503f;
  color: #8a3a2c;
  font-size: 0.92rem;
  padding: 14px 18px;
  margin-bottom: 22px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--onyx);
  color: #b6afa0;
  padding: 70px 0 30px;
  border-top: 1px solid var(--gold-deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.site-footer h4 {
  font-family: var(--font-body);
  color: var(--ivory);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer p { color: #aba48f; font-size: 0.92rem; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  border-top: 1px solid rgba(198,165,100,0.2);
  font-size: 0.8rem;
  color: #8a8374;
}

/* ---------- Misc ---------- */
.note {
  font-size: 0.86rem;
  font-style: italic;
  color: var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .tier-body { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 73px;
    left: 0; right: 0;
    background: var(--onyx);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 28px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(198,165,100,0.2);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta { display: inline-block; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
  .hero, .page-hero { padding: 90px 0 70px; }
}
