/* Savu Hub Property — brand design tokens */
:root {
  --sh-forest: #1e3148;
  --sh-forest-dark: #142536;
  --sh-clay: #e8622e;
  --sh-clay-dark: #c94f1f;
  --sh-gold: #f2a93c;
  --sh-sand: #f4f6fb;
  --sh-sand-dim: #e8ecf5;
  --sh-ink: #131c2e;
  --sh-ink-soft: #4a5568;
  --sh-line: #dbe1ee;
  --sh-font-display: 'Fraunces', serif;
  --sh-font-body: 'Inter', system-ui, sans-serif;
  --sh-font-data: 'IBM Plex Mono', monospace;
}

body {
  background: var(--sh-sand);
  color: var(--sh-ink);
  font-family: var(--sh-font-body);
}

.sh-display {
  font-family: var(--sh-font-display);
  font-weight: 700;
  color: var(--sh-ink);
}

.sh-data {
  font-family: var(--sh-font-data);
}

.sh-eyebrow {
  font-family: var(--sh-font-data);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sh-clay);
}

.sh-divider {
  height: 3px;
  width: 96px;
  margin: 1.25rem 0;
  border-radius: 2px;
  background-image: repeating-linear-gradient(90deg, var(--sh-clay) 0px, var(--sh-clay) 10px, transparent 10px, transparent 18px);
}

/* Hero */
.sh-hero {
  background: var(--sh-forest);
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}
.sh-hero h1 {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 1rem auto;
  max-width: 42rem;
  color: #fff;
}
.sh-hero p {
  max-width: 36rem;
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.6;
}
.sh-hero .sh-eyebrow { color: var(--sh-gold); }

/* Buttons */
.sh-btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color 0.15s ease;
}
.sh-btn--accent {
  background: var(--sh-clay);
  color: #fff;
}
.sh-btn--accent:hover { background: var(--sh-clay-dark); color: #fff; }
.sh-btn--dark {
  background: var(--sh-ink);
  color: #fff;
}
.sh-btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

/* Cards */
.sh-card {
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: 1rem;
  padding: 1.5rem;
}

/* Section wrapper */
.sh-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}
.sh-section--sand { background: var(--sh-sand-dim); }
.sh-section--accent { background: var(--sh-clay); color: #fff; text-align: center; }
.sh-section--accent .sh-display { color: #fff; }

/* Property grid + cards (used for featured listings on Home) */
.sh-property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.sh-property-card {
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease;
}
.sh-property-card:hover { box-shadow: 0 8px 24px rgba(19,28,46,0.08); }
.sh-property-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sh-property-card__body { padding: 1rem; }
.sh-property-card__price {
  font-family: var(--sh-font-data);
  color: var(--sh-forest);
  font-weight: 500;
  font-size: 1.1rem;
}
.sh-property-card__title {
  font-family: var(--sh-font-display);
  font-weight: 600;
  margin: 0.25rem 0;
}

/* Badges */
.sh-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 0.15rem 0.65rem;
  font-family: var(--sh-font-data);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.sh-badge--verified { background: rgba(16,31,61,0.95); color: #fff; }
.sh-badge--featured { background: var(--sh-gold); color: var(--sh-ink); }
.sh-badge--mortgage { background: var(--sh-clay); color: #fff; }

/* Forms (contact / submit property) */
.sh-contact-form, .sh-submit-form { max-width: 640px; }
.sh-contact-form label, .sh-submit-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--sh-ink-soft);
  margin-bottom: 1rem;
}
.sh-contact-form input, .sh-contact-form textarea, .sh-contact-form select,
.sh-submit-form input, .sh-submit-form textarea, .sh-submit-form select {
  border: 1px solid var(--sh-line);
  border-radius: 0.5rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  font-family: var(--sh-font-body);
  color: var(--sh-ink);
  background: var(--sh-sand);
}
.sh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sh-form-row--3 { grid-template-columns: repeat(3, 1fr); }
.sh-form-row--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 640px) {
  .sh-form-row, .sh-form-row--3, .sh-form-row--4 { grid-template-columns: 1fr; }
}
.sh-form-success {
  text-align: center;
  padding: 2rem;
}
.sh-form-success__title {
  font-family: var(--sh-font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.sh-pill-group {
  display: inline-flex;
  gap: 0.25rem;
  background: var(--sh-sand);
  border-radius: 999px;
  padding: 0.25rem;
  margin-bottom: 1.25rem;
}
.sh-pill {
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--sh-ink-soft);
}
.sh-pill input { display: none; }
.sh-pill:has(input:checked) { background: var(--sh-forest); color: #fff; }

/* City tiles */
.sh-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.sh-tile {
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: 1rem;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  display: block;
}
.sh-tile__title {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sh-ink);
}
.sh-tile__tagline { font-size: 0.9rem; color: var(--sh-ink-soft); margin-top: 0.35rem; }

/* Value cards (About page) */
.sh-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Site header */
.sh-header {
  background: var(--sh-forest);
  color: #fff;
  padding: 0.9rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
}
.sh-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sh-header__logo {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.sh-header__logo img {
  display: block;
  height: 44px;
  width: auto;
}
.sh-header__logo span {
  font-family: var(--sh-font-data);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sh-gold);
  margin-left: 0.4rem;
}
.sh-header__nav {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.sh-header__nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}
.sh-header__nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.sh-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.sh-header__actions a.sh-btn--accent { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.sh-header__divider {
  height: 3px;
  background-image: repeating-linear-gradient(90deg, var(--sh-clay) 0px, var(--sh-clay) 10px, transparent 10px, transparent 18px);
  max-width: 1280px;
  margin: 0.9rem auto 0;
}

/* Site footer */
.sh-footer {
  background: var(--sh-ink);
  color: rgba(255,255,255,0.75);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 3rem;
}
.sh-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.sh-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.sh-footer__brand {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.sh-footer h3 {
  font-family: var(--sh-font-data);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sh-gold);
  margin: 0 0 0.75rem;
}
.sh-footer ul { list-style: none; margin: 0; padding: 0; }
.sh-footer li { margin-bottom: 0.5rem; }
.sh-footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; }
.sh-footer a:hover { color: #fff; }
.sh-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Stats row */
.sh-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 640px;
  margin: 2rem auto 0;
  text-align: center;
}
.sh-stats dt {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
}
.sh-stats dd {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
