/* ============================================================
   MGM Golf Mesquite — Funnel Styles
   Premium desert-golf aesthetic. Low-decision, big-button.
   ============================================================ */

:root {
  --green:      #0c3b2e;   /* deep fairway green */
  --green-2:    #124a39;
  --gold:       #c8a457;   /* brushed gold accent */
  --gold-2:     #d9bd7c;
  --cream:      #f6f1e7;
  --sand:       #ece3d2;
  --ink:        #16241d;
  --muted:      #6b7d72;
  --white:      #ffffff;
  --shadow:     0 12px 40px rgba(12,59,46,0.18);
  --radius:     16px;
  --maxw:       1080px;
  --font:       "Helvetica Neue", Arial, sans-serif;
  --serif:      Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); line-height: 1.15; color: var(--green); }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin-bottom: 1rem; }
.lead { font-size: 1.25rem; color: var(--green-2); }

/* ---------- Top bar (minimal — low decision) ---------- */
.topbar {
  background: var(--green);
  color: var(--cream);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 50;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: var(--serif); font-size: 1.25rem; color: var(--gold-2); letter-spacing: 1px; text-decoration: none; }
.brand span { color: var(--cream); }
.topbar .phone { color: var(--cream); text-decoration: none; font-size: .95rem; opacity: .9; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  padding: 18px 40px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .12s ease, background .2s ease;
  letter-spacing: .3px;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); background: var(--gold-2); }
.btn.big { font-size: 1.35rem; padding: 22px 54px; }
.btn.block { display: block; width: 100%; }
.btn.ghost {
  background: transparent; color: var(--cream);
  border: 2px solid var(--gold); box-shadow: none;
}
.btn.ghost:hover { background: rgba(200,164,87,.15); }
.btn-sub { font-size: .85rem; font-weight: 500; opacity: .7; }

.cta-note { font-size: .9rem; color: var(--muted); margin-top: 12px; }

/* decline link on upsells — deliberately smaller (Brunson) */
.decline {
  display: inline-block; margin-top: 22px;
  color: var(--muted); font-size: .9rem; text-decoration: underline;
  background: none; border: none; cursor: pointer;
}
.decline:hover { color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(rgba(12,59,46,.72), rgba(12,59,46,.82)),
    url("assets/hero.svg") center/cover no-repeat;
  color: var(--cream);
  text-align: center;
  padding: 90px 0 100px;
}
.hero h1 { color: var(--cream); margin-bottom: 18px; }
.hero .lead { color: var(--sand); max-width: 680px; margin: 0 auto 34px; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 3px;
  font-size: .8rem; color: var(--gold-2); font-weight: 700; margin-bottom: 18px;
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.tight { padding: 48px 0; }
.section-alt { background: var(--sand); }
.section-green { background: var(--green); color: var(--sand); }
.section-green h2, .section-green h3 { color: var(--gold-2); }
.center { text-align: center; }

/* ---------- Story two-column ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.compare .col {
  background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow);
}
.compare .bad { border-top: 5px solid #b04a3a; }
.compare .good { border-top: 5px solid var(--gold); }
.compare h3 { margin-bottom: 12px; }
.compare ul { list-style: none; }
.compare li { padding: 7px 0 7px 30px; position: relative; }
.compare .bad li::before { content: "✕"; position: absolute; left: 0; color: #b04a3a; font-weight: 800; }
.compare .good li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* ---------- Homes ---------- */
.homes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.home-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.home-card .thumb { height: 160px; background: var(--green-2); position: relative; }
.home-card .thumb svg { width: 100%; height: 100%; }
.home-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.home-card h3 { margin-bottom: 6px; }
.home-card .spec { color: var(--muted); font-size: .95rem; margin-bottom: 14px; }
.home-card .beds { font-weight: 800; color: var(--green); font-size: 1.1rem; }
.home-card .btn { margin-top: auto; }
.badge {
  display: inline-block; background: var(--gold); color: var(--green);
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}

/* ---------- Value stack ---------- */
.stack { max-width: 640px; margin: 32px auto 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.stack .row { display: flex; justify-content: space-between; align-items: center; padding: 16px 26px; border-bottom: 1px solid var(--sand); }
.stack .row:last-child { border-bottom: none; }
.stack .row .label { font-weight: 600; }
.stack .row .val { color: var(--muted); }
.stack .total { background: var(--green); color: var(--gold-2); font-weight: 800; font-size: 1.15rem; }

/* ---------- Steps / how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
.step { text-align: center; padding: 20px; }
.step .num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--green);
  font-family: var(--serif); font-size: 1.6rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 34px; }
.review { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); text-align: left; }
.review .stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }
.review p { margin: 12px 0; font-size: .98rem; }
.review .who { font-weight: 700; color: var(--green); font-size: .9rem; }
.rating-big { font-family: var(--serif); font-size: 3rem; color: var(--gold-2); line-height: 1; }
.stat-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin: 26px 0 8px; }
.stat { text-align: center; }
.stat .n { font-family: var(--serif); font-size: 2.2rem; color: var(--gold-2); line-height: 1; }
.stat .l { font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--sand); margin-top: 6px; }
.reviews-more { text-align: center; margin-top: 14px; }
.reviews-more a { color: var(--gold-2); text-decoration: underline; font-size: .95rem; }

/* ---------- Guarantee ---------- */
.guarantee { background: var(--white); border: 3px dashed var(--gold); border-radius: var(--radius); padding: 36px; text-align: center; max-width: 720px; margin: 0 auto; box-shadow: var(--shadow); }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 32px auto 0; }
.faq details { background: var(--white); border-radius: 12px; padding: 18px 24px; margin-bottom: 12px; box-shadow: var(--shadow); }
.faq summary { font-weight: 700; cursor: pointer; color: var(--green); font-size: 1.05rem; }
.faq p { margin-top: 12px; margin-bottom: 0; color: var(--muted); }

/* ---------- Forms / funnel ---------- */
.funnel-head { text-align: center; margin-bottom: 8px; }
.progress { display: flex; justify-content: center; gap: 10px; margin: 20px 0 40px; }
.progress .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sand); }
.progress .dot.on { background: var(--gold); }
.progress .dot.done { background: var(--green); }

.card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 34px; margin-bottom: 24px;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; color: var(--green); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 2px solid var(--sand); border-radius: 12px;
  font-size: 1rem; font-family: var(--font); background: var(--cream);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* selectable home options */
.option { border: 3px solid var(--sand); border-radius: var(--radius); padding: 22px; margin-bottom: 16px; cursor: pointer; transition: border .15s ease, background .15s ease; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.option:hover { border-color: var(--gold-2); }
.option.selected { border-color: var(--gold); background: #fffdf7; }
.option .o-title { font-weight: 800; color: var(--green); font-size: 1.15rem; }
.option .o-desc { color: var(--muted); font-size: .95rem; }
.option .o-check { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--muted); flex: 0 0 auto; display: flex; align-items:center; justify-content:center; }
.option.selected .o-check { background: var(--gold); border-color: var(--gold); }
.option.selected .o-check::after { content: "✓"; color: var(--green); font-weight: 800; }

/* upsell hero image band */
.upsell-hero { background: var(--green); color: var(--cream); border-radius: var(--radius); padding: 40px; text-align: center; box-shadow: var(--shadow); margin-bottom: 24px; }
.upsell-hero h2 { color: var(--gold-2); }
.upsell-hero .price-tag { font-size: 1.3rem; font-weight: 800; color: var(--gold-2); margin: 14px 0; }
.wait { color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: .9rem; }

/* order summary */
.summary { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.summary .line { display: flex; justify-content: space-between; padding: 14px 24px; border-bottom: 1px solid var(--sand); }
.summary .line:last-child { border-bottom: none; }
.summary .line.total { background: var(--green); color: var(--gold-2); font-weight: 800; font-size: 1.15rem; }
.summary .line .rm { color: #b04a3a; font-size: .8rem; text-decoration: underline; cursor: pointer; margin-left: 10px; }

/* trust row */
.trust { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; align-items: center; margin-top: 30px; color: var(--sand); font-size: .95rem; }
.trust span::before { content: "★ "; color: var(--gold-2); }

/* footer */
footer { background: var(--ink); color: var(--sand); padding: 40px 0; text-align: center; font-size: .9rem; }
footer a { color: var(--gold-2); text-decoration: none; }
footer .fine { opacity: .6; margin-top: 12px; font-size: .8rem; }

/* scarcity banner */
.scarcity { background: var(--gold); color: var(--green); text-align: center; padding: 10px; font-weight: 700; font-size: .95rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .homes, .steps { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
