:root {
  --bg: #14120f;
  --bg-alt: #1b1815;
  --ink: #f3ede4;
  --ink-dim: #a89f92;
  --rust: #d9622b;
  --rust-dim: #7a3717;
  --line: #2c2822;
  --font-head: "Arial Black", "Helvetica Neue", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}

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

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 10px;
  font-weight: 700;
}

.lede {
  color: var(--ink-dim);
  font-size: 18px;
  max-width: 640px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(20, 18, 15, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.logo span { color: var(--rust); }

.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.nav a:not(.nav-cta) { color: var(--ink-dim); }
.nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--rust);
  color: #14120f;
  padding: 9px 18px;
  border-radius: 3px;
}

.nav-login {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 3px;
}
.nav-login:hover { border-color: var(--rust); }

/* Hero */
.hero {
  padding: 120px 0 90px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at top right, rgba(217, 98, 43, 0.12), transparent 60%);
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-dim);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
}

.btn-primary { background: var(--rust); color: #14120f; }
.btn-primary:hover { background: #c2551f; }

.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--rust); color: var(--rust); }

.btn-block { display: block; width: 100%; text-align: center; }

/* Sections */
.section { padding: 90px 0; border-bottom: 1px solid var(--line); }
.section-alt { background: var(--bg-alt); }

.section h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}

/* Concept */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.concept-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
}

.concept-card h3 {
  font-size: 16px;
  color: var(--rust);
  margin-bottom: 10px;
  text-transform: none;
}

.concept-card p { color: var(--ink-dim); margin: 0; font-size: 15px; }

/* Membership */
.price-card {
  max-width: 420px;
  border: 1px solid var(--rust-dim);
  border-radius: 6px;
  padding: 36px;
  margin-top: 40px;
  background: rgba(217, 98, 43, 0.05);
}

.price-top { display: flex; align-items: baseline; gap: 8px; }
.price { font-family: var(--font-head); font-size: 48px; color: var(--rust); }
.price-period { color: var(--ink-dim); font-size: 16px; }
.price-sub { color: var(--ink-dim); margin: 4px 0 24px; font-size: 14px; }

.price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.price-includes li { padding-left: 22px; position: relative; }
.price-includes li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--rust);
}

.price-note { color: var(--ink-dim); font-size: 12px; margin: 16px 0 0; }

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.amenity h3 { font-size: 16px; text-transform: none; margin-bottom: 8px; }
.amenity p { color: var(--ink-dim); font-size: 15px; margin: 0; }

/* For Rent cards */
.forsale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.forsale-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg);
}

.forsale-photo {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  font-size: 13px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

.forsale-info { padding: 20px; }
.forsale-info h3 { font-size: 16px; text-transform: none; margin-bottom: 6px; }
.forsale-price { color: var(--rust); font-weight: 700; margin: 0 0 10px; }
.forsale-desc { color: var(--ink-dim); font-size: 14px; margin: 0 0 18px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  font-size: 13px;
  background: var(--bg-alt);
}

/* Location */
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-address { color: var(--ink-dim); margin-top: 20px; font-size: 15px; }

.map-placeholder {
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  font-size: 14px;
}

/* Join */
.join-form {
  max-width: 480px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.join-form input,
.join-form textarea {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
}

.join-form input:focus,
.join-form textarea:focus {
  outline: none;
  border-color: var(--rust);
}

/* Footer */
.site-footer { padding: 32px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  color: var(--ink-dim);
  font-size: 13px;
  font-family: var(--font-head);
  text-transform: uppercase;
}
.accent { color: var(--rust); }
.footer-version { opacity: 0.5; font-size: 11px; letter-spacing: 0.05em; }

@media (max-width: 720px) {
  .nav { gap: 16px; font-size: 13px; }
  .location-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}
