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

:root {
  --yellow: #c8960a;
  --yellow-light: #f5c842;
  --yellow-bg: #fffbee;
  --black: #111111;
  --gray: #555555;
  --gray-light: #f4f4f4;
  --border: #e5e5e5;
  --white: #ffffff;
  --radius: 12px;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

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

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.logo img { height: 36px; display: block; }
.nav nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 500; }
.nav nav a { color: var(--gray); transition: color .2s; }
.nav nav a:hover { color: var(--black); }
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; }
@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav-toggle { display: block; }
  .nav nav { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px; gap: 16px; }
  .nav nav.open { display: flex; }
}

/* BUTTONS */
.btn-primary {
  display: inline-block; padding: 13px 28px;
  background: var(--yellow); color: var(--white);
  font-weight: 700; font-size: 15px; border-radius: 8px;
  transition: background .2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #a87a08; }
.btn-secondary {
  display: inline-block; padding: 13px 28px;
  background: transparent; color: var(--black);
  font-weight: 600; font-size: 15px; border-radius: 8px;
  border: 2px solid var(--black); transition: all .2s; cursor: pointer;
}
.btn-secondary:hover { background: var(--black); color: var(--white); }
.btn-nav {
  padding: 9px 20px; background: var(--yellow); color: var(--white);
  font-weight: 700; font-size: 13px; border-radius: 7px;
  transition: background .2s;
}
.btn-nav:hover { background: #a87a08; color: var(--white); }

/* HERO */
.hero {
  padding: 100px 40px 80px;
  background: var(--black);
  color: var(--white);
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--yellow-light); margin-bottom: 16px;
}
.hero h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 700; line-height: 1.1; margin-bottom: 24px; }
.lede { font-size: 18px; color: #aaaaaa; line-height: 1.7; margin-bottom: 36px; max-width: 600px; }
.lede-sm { font-size: 16px; color: var(--gray); margin-bottom: 32px; max-width: 540px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* SECTIONS */
.section { padding: 80px 40px; }
.section-alt { background: var(--gray-light); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner h2 { font-size: clamp(24px, 4vw, 40px); font-weight: 700; margin-bottom: 48px; margin-top: 12px; }
.center { text-align: center; }
.center h2, .center .lede-sm { margin-left: auto; margin-right: auto; }

/* TYPE CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.type-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: box-shadow .2s;
}
.type-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.type-icon { font-size: 28px; margin-bottom: 14px; }
.type-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.type-card p { font-size: 14px; color: var(--gray); }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split-copy h2 { margin-bottom: 16px; }
.split-copy p { color: var(--gray); margin-bottom: 20px; }
.check-list { list-style: none; margin-bottom: 28px; }
.check-list li { padding: 6px 0; padding-left: 24px; position: relative; font-size: 14px; color: var(--gray); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--yellow); font-weight: 700; }
.split-visual { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.clone-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px; width: 100%;
}
.clone-card--yellow { border-color: var(--yellow); background: var(--yellow-bg); }
.clone-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.clone-card--yellow .clone-tag { color: var(--yellow); }
.clone-name { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.clone-desc { font-size: 13px; color: var(--gray); }
.clone-arrow { font-size: 24px; color: var(--yellow); font-weight: 700; padding-left: 8px; }

/* INVENTORY */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--border); background: var(--white); cursor: pointer;
  transition: all .2s; color: var(--gray);
}
.filter-btn:hover, .filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.inventory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.venture-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden; transition: box-shadow .2s, transform .2s;
  position: relative;
}
.venture-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-2px); }

/* Colored top accent bar per status */
.venture-card[data-status="for_sale"]  { border-top: 4px solid #1a7f4b; }
.venture-card[data-status="clone"]     { border-top: 4px solid var(--yellow); }
.venture-card[data-status="upcoming"]  { border-top: 4px solid #4353c4; }
.venture-card[data-status="sold"]      { border-top: 4px solid #bbb; }

/* Logo banner area */
.card-logo-area {
  background: var(--gray-light); display: flex; align-items: center;
  justify-content: center; padding: 24px; min-height: 110px;
}
.card-logo-area img { max-height: 72px; max-width: 180px; object-fit: contain; display: block; }
.card-logo-placeholder {
  font-size: 36px; color: #ccc;
}

.card-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.card-status {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; width: fit-content;
}
.card-status.available { background: #e6f7ee; color: #1a7f4b; }
.card-status.clone     { background: var(--yellow-bg); color: var(--yellow); }
.card-status.upcoming  { background: #eef2ff; color: #4353c4; }
.card-status.sold      { background: #f4f4f4; color: #999; }
.card-name { font-size: 20px; font-weight: 700; line-height: 1.2; }
.card-type { font-size: 12px; color: var(--yellow); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.card-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.card-tags span {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  background: var(--gray-light); border-radius: 999px; color: var(--gray);
}
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 4px; }
.card-price { font-size: 18px; font-weight: 800; color: var(--black); }
.card-cta { font-size: 13px; font-weight: 700; color: var(--yellow); white-space: nowrap; }
.card-cta:hover { color: #a87a08; }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; }
.step-num { font-size: 48px; font-weight: 700; color: var(--yellow-light); opacity: .4; margin-bottom: 12px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--gray); margin-bottom: 14px; }
.step-link { font-size: 14px; font-weight: 700; color: var(--yellow); display: inline-block; }
.step-link:hover { color: #a87a08; }

/* REQUEST FORM */
.request-form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: inherit;
  background: var(--white); color: var(--black);
  transition: border-color .2s;
}
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus { border-color: var(--yellow); outline: none; }
.request-form textarea { resize: vertical; }
.form-note { font-size: 13px; margin-top: 4px; }

/* FOOTER */
footer { background: var(--black); color: #888; padding: 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-inner p { font-size: 13px; }
.footer-inner a { color: var(--yellow-light); }
