/* SuiteStays — Dark, bold, spontaneous travel energy */

/* ── Design tokens ──────────────────────────────────── */
:root {
  --bg:        #0d0d0f;
  --surface:   #16161a;
  --surface2:  #1f1f26;
  --border:    rgba(255,255,255,0.08);
  --text:      #f0ede8;
  --muted:     #8a8693;
  --accent:    #ff6b35;
  --accent2:   #ffd166;
  --gold:      #f59e0b;
  --crypto:    #a78bfa;

  --font-display: 'Syne', sans-serif;
  --font-serif:   'Instrument Serif', serif;
  --font-body:    'Satoshi', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ─────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ─────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 48px;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  background: #ff4f1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,53,0.5);
}
.btn-primary.btn-large { font-size: 17px; padding: 18px 36px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

/* ── Animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
.logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-crypto { color: var(--crypto); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  padding: 8px 18px;
  border: 1.5px solid var(--accent);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--accent); color: #fff; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 120px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,107,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.25);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

/* Search bar */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 8px 8px 20px;
  margin-bottom: 20px;
  max-width: 620px;
  gap: 0;
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: rgba(255,107,53,0.4); }

.search-field {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.search-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.search-input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 0;
  width: 100%;
}
.search-input::placeholder { color: rgba(138,134,147,0.5); }
.search-input option { background: var(--surface2); }

.search-date::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
  cursor: pointer;
}

.search-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 16px;
  flex-shrink: 0;
}

.search-btn {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.search-btn:hover { background: #ff4f1a; transform: scale(1.02); }

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 13px;
  color: var(--muted);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 320px;
  height: 400px;
}

.hcard {
  position: absolute;
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s;
}

.hcard-back {
  top: 30px;
  right: 0;
  transform: rotate(6deg);
  opacity: 0.65;
}
.hcard-front {
  top: 0;
  left: 0;
  transform: rotate(-2deg);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hcard:hover { transform: rotate(0deg) scale(1.02); }

.hcard-img {
  height: 200px;
  background: var(--surface2);
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Placeholder property images using CSS gradients */
.hcard-img-1 {
  background: linear-gradient(135deg,
    #1a3a2e 0%, #0d2419 30%,
    #1e4a35 60%, #0a1f16 100%);
}
.hcard-img-2 {
  background: linear-gradient(135deg,
    #1a1f3e 0%, #0d1228 30%,
    #1e2a5e 60%, #080d24 100%);
}
.prop-img-1 {
  background: linear-gradient(160deg, #1a3a4e 0%, #0d2235 50%, #1e4a5e 100%);
}
.prop-img-2 {
  background: linear-gradient(160deg, #2e1a1a 0%, #1f0d0d 50%, #3e2020 100%);
}
.prop-img-3 {
  background: linear-gradient(160deg, #1a2e1e 0%, #0d1f11 50%, #203e24 100%);
}
.prop-img-4 {
  background: linear-gradient(160deg, #2a1f10 0%, #1a1208 50%, #3a2e18 100%);
}
.prop-img-5 {
  background: linear-gradient(160deg, #0f2030 0%, #081520 50%, #142840 100%);
}
.prop-img-6 {
  background: linear-gradient(160deg, #2a1030 0%, #1a0820 50%, #381540 100%);
}

.hcard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.hcard-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hcard-name {
  font-weight: 600;
  font-size: 14px;
}
.hcard-loc {
  font-size: 12px;
  color: var(--muted);
}
.hcard-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.hcard-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  margin-top: 4px;
}
.hcard-night { font-size: 13px; font-weight: 400; color: var(--muted); }

/* ── How it works ──────────────────────────────────── */
.how {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 32px;
  position: relative;
}
.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }

.step-arrow {
  font-size: 28px;
  color: var(--border);
  align-self: center;
  flex-shrink: 0;
  margin-top: -24px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Properties ─────────────────────────────────────── */
.properties {
  padding: 100px 0;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.property-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  border-color: rgba(255,107,53,0.25);
}
.property-card-featured {
  border-color: rgba(255,107,53,0.3);
  box-shadow: 0 4px 24px rgba(255,107,53,0.1);
}

.prop-img {
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.prop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(22,22,26,0.9);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.prop-badge-hot {
  background: rgba(255,107,53,0.15);
  border-color: rgba(255,107,53,0.4);
  color: var(--accent);
}

.prop-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(13,13,15,0.9);
  backdrop-filter: blur(8px);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 10px;
}
.prop-price span {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}

.prop-body { padding: 18px; }

.prop-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.prop-location {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.prop-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}
.tag-beds    { color: var(--accent2); border-color: rgba(255,209,102,0.2); background: rgba(255,209,102,0.06); }
.tag-kitchen { color: #4ade80;        border-color: rgba(74,222,128,0.2);  background: rgba(74,222,128,0.06); }

.properties-cta {
  text-align: center;
}

/* ── Why Us ──────────────────────────────────────────── */
.why {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-title {
  margin-bottom: 20px;
}
.why-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.why-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 4px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.why-feat:hover {
  background: var(--surface2);
  border-color: var(--border);
}

.why-feat-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  border-radius: 12px;
}

.why-feat-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.why-feat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Crypto Section ──────────────────────────────────── */
.crypto {
  padding: 100px 0;
  background: var(--bg);
}

.crypto-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 48px;
  background: linear-gradient(135deg, rgba(167,139,250,0.08) 0%, rgba(255,107,53,0.06) 100%);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: 24px;
}

.crypto-coins {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.coin {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-display);
  border: 2px solid;
  transition: transform 0.25s;
}
.coin:hover { transform: scale(1.15) rotate(-5deg); }

.coin-btc  { color: #f7931a; border-color: rgba(247,147,26,0.4);  background: rgba(247,147,26,0.08); }
.coin-eth  { color: #627eea; border-color: rgba(98,126,234,0.4);  background: rgba(98,126,234,0.08); }
.coin-usdc { color: #2775ca; border-color: rgba(39,117,202,0.4);  background: rgba(39,117,202,0.08); }

.crypto-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.crypto-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.crypto-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.crypto-or {
  color: var(--muted);
  font-size: 13px;
}

.crypto-supported {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.crypto-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.crypto-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.cbadge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--crypto);
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.25);
  padding: 4px 10px;
  border-radius: 100px;
}
.cbadge-more { color: var(--muted); background: var(--surface); border-color: var(--border); }

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 20px;
}

.footer-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-trust span {
  font-size: 12px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  color: var(--muted);
}

.footer-domain {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .property-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 20px 60px;
    text-align: center;
  }
  .hero-visual { order: -1; }
  .hero-card-stack { width: 260px; height: 340px; }
  .hcard { width: 230px; }
  .hero-trust { justify-content: center; }
  .hero-sub { margin: 0 auto 40px; }

  .search-bar {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    border-radius: var(--radius);
    max-width: 100%;
  }
  .search-divider { width: 100%; height: 1px; margin: 0; }
  .search-field { width: 100%; }
  .search-btn { width: 100%; padding: 14px; border-radius: 10px; }

  .steps {
    flex-direction: column;
    gap: 32px;
  }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .step { padding: 0; }

  .property-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; gap: 48px; }

  .crypto-inner { padding: 40px 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .section-title { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .nav { padding: 0 20px; }
  .footer-links { grid-template-columns: 1fr; }
  .crypto-actions { flex-direction: column; align-items: stretch; }
  .crypto-actions .btn-primary,
  .crypto-actions .btn-ghost { text-align: center; justify-content: center; }
}
