@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700;900&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --ink: #0e0e12;
  --ink-mid: #1c1c26;
  --gold: #b8963e;
  --gold-light: #d4af62;
  --gold-pale: rgba(184,150,62,0.12);
  --cream: #faf8f4;
  --white: #ffffff;
  --muted: #7a7a8c;
  --border: #e5e2db;
  --green: #2d7a4f;
  --red-soft: #c0392b;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ---- NAV ---- */
.cs-nav {
  background: var(--ink);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(184,150,62,0.2);
}
.cs-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.cs-logo .dot { color: var(--gold); }
.cs-logo .tag {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 6px;
  border: 1px solid rgba(184,150,62,0.4);
  padding: 2px 7px;
  border-radius: 2px;
  vertical-align: middle;
}
.cs-nav-menu { display:flex; gap:28px; list-style:none; }
.cs-nav-menu a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.2s;
}
.cs-nav-menu a:hover { color: var(--gold); }
.cs-nav-right { display:flex; gap:10px; align-items:center; }

.cs-btn-ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  background: transparent;
  padding: 7px 18px; border-radius: 4px;
  font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: 'Outfit', sans-serif;
  text-decoration: none; display:inline-block;
  transition: all 0.2s;
}
.cs-btn-ghost:hover { border-color:var(--gold); color:var(--gold); }

.cs-btn-gold {
  background: var(--gold); color: var(--ink);
  border: none; padding: 8px 20px; border-radius: 4px;
  font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: 'Outfit', sans-serif;
  text-decoration: none; display:inline-block;
  transition: background 0.2s;
}
.cs-btn-gold:hover { background: var(--gold-light); }

/* ---- HERO ---- */
.cs-hero {
  background: var(--ink);
  padding: 72px 52px 88px;
  position: relative; overflow: hidden;
}
.cs-hero-globe {
  position: absolute; right:-80px; top:-80px;
  width:560px; height:560px; border-radius:50%;
  border: 1px solid rgba(184,150,62,0.08);
  background: radial-gradient(circle at 30% 30%, rgba(184,150,62,0.06), transparent 60%);
  pointer-events:none;
}
.cs-hero-label {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--gold-pale);
  border: 1px solid rgba(184,150,62,0.35);
  color: var(--gold); font-size:11px; font-weight:600;
  letter-spacing:2px; text-transform:uppercase;
  padding: 6px 14px; border-radius:2px; margin-bottom:28px;
}
.cs-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900; color:#fff; line-height:1.05;
  max-width:740px; margin-bottom:22px; letter-spacing:-1px;
}
.cs-hero h1 em { color:var(--gold); font-style:normal; }
.cs-hero-sub {
  font-size:16px; color:rgba(255,255,255,0.55);
  max-width:500px; line-height:1.7; margin-bottom:44px; font-weight:300;
}

/* SEARCH */
.cs-search-wrap {
  background:#fff; border-radius:8px;
  display:flex; align-items:center;
  max-width:780px; overflow:hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.cs-search-wrap select,
.cs-search-wrap input {
  border:none; outline:none; height:56px;
  font-family:'Outfit',sans-serif; font-size:14px;
  color:var(--ink); background:transparent;
}
.cs-search-country {
  padding: 0 18px; border-right:1px solid #ece9e3;
  min-width:160px; cursor:pointer;
}
.cs-search-input { flex:1; padding:0 20px; font-size:15px; }
.cs-search-input::placeholder { color:#bbb; }
.cs-search-sector { border-left:1px solid #ece9e3; padding:0 16px; min-width:150px; cursor:pointer; }
.cs-search-btn {
  background:var(--gold); color:var(--ink);
  border:none; padding:0 28px; height:56px;
  font-size:14px; font-weight:700; cursor:pointer;
  font-family:'Outfit',sans-serif; white-space:nowrap;
  transition:background 0.2s;
}
.cs-search-btn:hover { background:var(--gold-light); }

.cs-trust { display:flex; gap:28px; margin-top:28px; flex-wrap:wrap; }
.cs-trust-item {
  display:flex; align-items:center; gap:7px;
  font-size:12px; color:rgba(255,255,255,0.45);
}
.cs-trust-item .chk { color:var(--gold); }

/* ---- STATS ---- */
.cs-stats {
  background:#fff; border-bottom:1px solid var(--border);
  display:flex; padding:0 52px;
}
.cs-stat {
  flex:1; padding:22px 0;
  border-right:1px solid var(--border);
  display:flex; flex-direction:column; align-items:center; gap:3px;
}
.cs-stat:last-child { border-right:none; }
.cs-stat-num {
  font-family:'Cormorant Garamond',serif;
  font-size:28px; font-weight:700; color:var(--ink);
}
.cs-stat-label {
  font-size:11px; color:var(--muted);
  text-transform:uppercase; letter-spacing:1.2px;
}

/* ---- SECTIONS ---- */
.cs-section { padding:60px 52px; }
.cs-section-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:36px; }
.cs-section-head h2 {
  font-family:'Cormorant Garamond',serif;
  font-size:34px; font-weight:700; letter-spacing:-0.5px;
}
.cs-section-head p { font-size:14px; color:var(--muted); max-width:320px; text-align:right; line-height:1.5; }

/* CONTINENT TABS */
.cs-ctabs { display:flex; border-bottom:1px solid var(--border); margin-bottom:28px; }
.cs-ctab {
  padding:10px 22px; font-size:13px; font-weight:500;
  color:var(--muted); cursor:pointer;
  border-bottom:2px solid transparent; margin-bottom:-1px; transition:all 0.2s;
}
.cs-ctab.active { color:var(--ink); border-bottom-color:var(--gold); font-weight:600; }
.cs-ctab:hover { color:var(--ink); }

/* COUNTRY GRID */
.cs-country-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:14px; }
.cs-country-card {
  background:#fff; border:1px solid var(--border);
  border-radius:8px; padding:20px 18px;
  cursor:pointer; transition:all 0.22s;
  position:relative; overflow:hidden;
  text-decoration:none; display:block;
}
.cs-country-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background:var(--gold); transform:scaleX(0); transition:transform 0.25s;
}
.cs-country-card:hover { box-shadow:0 8px 30px rgba(14,14,18,0.1); transform:translateY(-3px); border-color:rgba(184,150,62,0.3); }
.cs-country-card:hover::before { transform:scaleX(1); }
.cc-flag { font-size:32px; margin-bottom:10px; }
.cc-name { font-family:'Cormorant Garamond',serif; font-size:17px; font-weight:700; color:var(--ink); margin-bottom:4px; }
.cc-count { font-size:12px; color:var(--muted); margin-bottom:10px; }
.cc-badge { font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; padding:3px 8px; border-radius:2px; }
.cc-hot { background:var(--gold-pale); color:var(--gold); }
.cc-new { background:#e8f4fd; color:#1a73e8; }
.cc-active { background:#e8f5e9; color:var(--green); }

/* ---- LISTING CARDS ---- */
.cs-dark-section { background:var(--ink-mid); padding:60px 52px; }
.cs-dark-section .cs-section-head h2 { color:#fff; }
.cs-dark-section .cs-section-head p { color:rgba(255,255,255,0.4); }

.cs-featured-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }

.cs-feat-card {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:8px; padding:22px; cursor:pointer; transition:all 0.22s;
}
.cs-feat-card:hover { background:rgba(255,255,255,0.07); border-color:rgba(184,150,62,0.3); transform:translateY(-2px); }

.cs-browse-wrap {
  display:grid; grid-template-columns:270px 1fr; gap:28px;
  padding:48px 52px; max-width:1500px; margin:0 auto;
}

/* FILTER PANEL */
.cs-filter-panel {
  background:#fff; border:1px solid var(--border);
  border-radius:8px; padding:24px;
  position:sticky; top:86px;
}
.cs-fp-title { font-size:10px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:20px; }
.cs-fg { margin-bottom:22px; }
.cs-fg label { display:block; font-size:13px; font-weight:500; color:var(--ink); margin-bottom:7px; }
.cs-fg select, .cs-fg input[type="text"] {
  width:100%; border:1px solid var(--border); border-radius:5px;
  padding:9px 12px; font-size:13px; font-family:'Outfit',sans-serif;
  color:var(--ink); background:#fff; outline:none; cursor:pointer; transition:border 0.2s;
}
.cs-fg select:focus, .cs-fg input:focus { border-color:var(--gold); }
.cs-range-row { display:flex; gap:7px; }
.cs-range-row input { flex:1; }
.cs-cb-list { display:flex; flex-direction:column; gap:8px; }
.cs-cb-item { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--ink); cursor:pointer; }
.cs-cb-item input { width:15px; height:15px; accent-color:var(--gold); cursor:pointer; }
.cs-filter-apply {
  width:100%; background:var(--ink); color:#fff; border:none;
  padding:12px; border-radius:5px; font-size:13px; font-weight:600;
  cursor:pointer; font-family:'Outfit',sans-serif; transition:all 0.2s;
}
.cs-filter-apply:hover { background:var(--gold); color:var(--ink); }
.cs-filter-reset {
  width:100%; background:transparent; color:var(--muted);
  border:1px solid var(--border); padding:9px; border-radius:5px;
  font-size:12px; cursor:pointer; font-family:'Outfit',sans-serif; margin-top:8px; transition:all 0.2s;
}
.cs-filter-reset:hover { border-color:var(--red-soft); color:var(--red-soft); }

/* LISTING CARD (horizontal) */
.cs-lcard {
  background:#fff; border:1px solid var(--border); border-radius:8px;
  padding:22px; margin-bottom:14px;
  display:grid; grid-template-columns:52px 1fr 160px; gap:18px; align-items:start;
  cursor:pointer; transition:all 0.2s;
}
.cs-lcard:hover { box-shadow:0 6px 28px rgba(14,14,18,0.08); transform:translateY(-2px); border-color:rgba(184,150,62,0.25); }
.cs-lcard-icon { width:52px; height:52px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.cs-lcard-head { display:flex; align-items:center; gap:8px; margin-bottom:5px; flex-wrap:wrap; }
.cs-lcard-title { font-family:'Cormorant Garamond',serif; font-size:18px; font-weight:700; color:var(--ink); }
.cs-lbadge { font-size:9px; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:3px 8px; border-radius:2px; }
.lb-featured { background:var(--gold-pale); color:var(--gold); }
.lb-new { background:#e8f4fd; color:#1a73e8; }
.lb-active { background:#e8f5e9; color:var(--green); }
.lb-hot { background:#fdecea; color:var(--red-soft); }
.cs-lcard-meta { font-size:12px; color:var(--muted); display:flex; gap:14px; flex-wrap:wrap; margin-bottom:8px; }
.cs-lcard-desc { font-size:13px; color:#666; line-height:1.6; margin-bottom:10px; }
.cs-lcard-tags { display:flex; gap:6px; flex-wrap:wrap; }
.cs-ltag { font-size:10px; font-weight:500; padding:3px 9px; border-radius:20px; background:var(--cream); color:#666; border:1px solid var(--border); }
.cs-lcard-right { text-align:right; }
.cs-lcard-price { font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:700; color:var(--ink); }
.cs-lcard-plabel { font-size:10px; color:var(--muted); margin-bottom:10px; }
.cs-lcard-metrics { display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.cs-lcard-metric { background:var(--cream); border-radius:4px; padding:6px 10px; text-align:center; }
.cs-lcard-metric .mv { font-size:13px; font-weight:600; color:var(--ink); }
.cs-lcard-metric .ml { font-size:9px; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; }
.cs-lcard-cta { width:100%; background:var(--ink); color:#fff; border:none; padding:9px; border-radius:4px; font-size:12px; font-weight:600; cursor:pointer; font-family:'Outfit',sans-serif; transition:all 0.2s; }
.cs-lcard-cta:hover { background:var(--gold); color:var(--ink); }
.cs-lcard-save { width:100%; background:transparent; color:var(--muted); border:1px solid var(--border); padding:7px; border-radius:4px; font-size:11px; cursor:pointer; font-family:'Outfit',sans-serif; margin-top:6px; transition:all 0.2s; }
.cs-lcard-save:hover { border-color:var(--gold); color:var(--gold); }

/* HOW IT WORKS */
.cs-how-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.cs-how-card { text-align:center; padding:32px 20px; border:1px solid var(--border); border-radius:8px; transition:all 0.22s; }
.cs-how-card:hover { border-color:rgba(184,150,62,0.4); box-shadow:0 8px 30px rgba(14,14,18,0.07); }
.cs-how-num { font-family:'Cormorant Garamond',serif; font-size:48px; font-weight:900; color:rgba(184,150,62,0.2); margin-bottom:8px; line-height:1; }
.cs-how-icon { font-size:28px; margin-bottom:12px; }
.cs-how-title { font-family:'Cormorant Garamond',serif; font-size:18px; font-weight:700; color:var(--ink); margin-bottom:8px; }
.cs-how-desc { font-size:13px; color:var(--muted); line-height:1.6; }

/* PAGINATION */
.cs-pagination { display:flex; justify-content:center; align-items:center; gap:5px; padding-top:32px; }
.cs-pg-btn { width:34px; height:34px; display:flex; align-items:center; justify-content:center; border:1px solid var(--border); border-radius:4px; background:#fff; font-size:13px; cursor:pointer; font-family:'Outfit',sans-serif; color:var(--ink); transition:all 0.2s; }
.cs-pg-btn:hover, .cs-pg-btn.active { background:var(--ink); color:#fff; border-color:var(--ink); }

/* FOOTER */
.cs-footer { background:var(--ink); padding:48px 52px 32px; color:rgba(255,255,255,0.4); border-top:1px solid rgba(184,150,62,0.15); }
.cs-footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.cs-footer-col h4 { font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.6); margin-bottom:16px; }
.cs-footer-col a { display:block; font-size:13px; color:rgba(255,255,255,0.35); text-decoration:none; margin-bottom:9px; transition:color 0.2s; }
.cs-footer-col a:hover { color:var(--gold); }
.cs-footer-bottom { border-top:1px solid rgba(255,255,255,0.07); padding-top:20px; display:flex; justify-content:space-between; align-items:center; font-size:12px; }
.cs-footer-bottom strong { color:var(--gold); }
.cs-footer-links { display:flex; gap:20px; }
.cs-footer-links a { color:rgba(255,255,255,0.3); text-decoration:none; font-size:12px; }

/* LIST TABS */
.cs-list-tabs { display:flex; border-bottom:1px solid var(--border); margin-bottom:20px; }
.cs-lt { padding:9px 18px; font-size:13px; font-weight:500; color:var(--muted); cursor:pointer; border-bottom:2px solid transparent; margin-bottom:-1px; transition:all 0.2s; }
.cs-lt.active { color:var(--ink); border-bottom-color:var(--gold); font-weight:600; }
.cs-lt:hover { color:var(--ink); }
.cs-listings-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
.cs-listings-header h2 { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:700; }
.cs-sort-wrap { display:flex; align-items:center; gap:8px; }
.cs-sort-wrap span { font-size:13px; color:var(--muted); }
.cs-sort-wrap select { border:1px solid var(--border); border-radius:4px; padding:7px 12px; font-size:13px; font-family:'Outfit',sans-serif; color:var(--ink); cursor:pointer; outline:none; }

/* MODAL */
.cs-overlay { position:fixed; inset:0; background:rgba(14,14,18,0.65); backdrop-filter:blur(4px); z-index:200; display:none; align-items:center; justify-content:center; }
.cs-overlay.open { display:flex; }
.cs-modal { background:#fff; border-radius:12px; max-width:660px; width:92%; max-height:88vh; overflow-y:auto; box-shadow:0 40px 120px rgba(14,14,18,0.35); }
.cs-modal-hd { background:var(--ink); padding:28px 32px; border-radius:12px 12px 0 0; position:relative; }
.cs-modal-hd h2 { font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:700; color:#fff; margin-bottom:4px; }
.cs-modal-hd p { font-size:13px; color:rgba(255,255,255,0.5); }
.cs-modal-close { position:absolute; top:18px; right:18px; background:rgba(255,255,255,0.08); border:none; color:#fff; width:32px; height:32px; border-radius:50%; font-size:18px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background 0.2s; }
.cs-modal-close:hover { background:rgba(255,255,255,0.18); }
.cs-modal-body { padding:30px 32px; }
.cs-mgrid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:22px; }
.cs-mitem { background:var(--cream); border-radius:6px; padding:13px 15px; }
.cs-mitem .ml { font-size:10px; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:3px; }
.cs-mitem .mv { font-size:16px; font-weight:600; color:var(--ink); }
.cs-modal-desc { font-size:14px; line-height:1.75; color:#555; margin-bottom:24px; }
.cs-mform input, .cs-mform select, .cs-mform textarea { width:100%; border:1px solid var(--border); border-radius:5px; padding:11px 14px; font-size:14px; font-family:'Outfit',sans-serif; color:var(--ink); outline:none; margin-bottom:11px; transition:border 0.2s; background:#fff; }
.cs-mform input:focus, .cs-mform select:focus, .cs-mform textarea:focus { border-color:var(--gold); }
.cs-mform textarea { height:95px; resize:vertical; }
.cs-mform-row { display:grid; grid-template-columns:1fr 1fr; gap:11px; }
.cs-msubmit { width:100%; background:var(--gold); color:var(--ink); border:none; padding:14px; border-radius:5px; font-size:15px; font-weight:700; cursor:pointer; font-family:'Outfit',sans-serif; transition:background 0.2s; margin-top:4px; }
.cs-msubmit:hover { background:var(--gold-light); }

/* TOAST */
.cs-toast { position:fixed; bottom:28px; right:28px; background:var(--ink); color:#fff; padding:13px 20px; border-radius:6px; font-size:14px; font-weight:500; box-shadow:0 8px 32px rgba(14,14,18,0.25); border-left:3px solid var(--gold); opacity:0; transform:translateY(8px); transition:all 0.3s; z-index:300; }
.cs-toast.show { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media(max-width:900px){
  .cs-nav { padding:0 20px; }
  .cs-nav-menu { display:none; }
  .cs-hero { padding:48px 20px 64px; }
  .cs-stats { flex-wrap:wrap; padding:0 20px; }
  .cs-section, .cs-browse-wrap { padding:40px 20px; }
  .cs-browse-wrap { grid-template-columns:1fr; }
  .cs-featured-grid { grid-template-columns:1fr; }
  .cs-how-grid { grid-template-columns:1fr 1fr; }
  .cs-country-grid { grid-template-columns:repeat(2,1fr); }
  .cs-footer-grid { grid-template-columns:1fr 1fr; }
  .cs-dark-section { padding:48px 20px; }
  .cs-lcard { grid-template-columns:52px 1fr; }
  .cs-lcard-right { display:none; }
}
