.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.9rem 1.8rem; font-family: var(--font-title); font-size: 0.95rem; font-weight: 700; border-radius: var(--radius-md); border: 1px solid transparent; cursor: pointer; transition: all 0.3s ease; }
.btn-terracotta { background: linear-gradient(135deg, var(--accent-terracotta), var(--accent-mustard)); color: #1C1917; box-shadow: var(--shadow-terracotta); }
.btn-terracotta:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(192, 92, 70, 0.45); }
.btn-outline { background: rgba(255, 255, 255, 0.04); color: var(--text-main); border: 1px solid var(--border-terracotta); }
.btn-outline:hover { background: rgba(192, 92, 70, 0.15); color: var(--accent-terracotta); }
.btn-full { width: 100%; }

.section { padding: 5.5rem 0; position: relative; }
.section-dark { background-color: var(--bg-secondary); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3.5rem auto; }

.hero { padding: 5rem 0 6rem 0; background: radial-gradient(circle at 75% 25%, rgba(192, 92, 70, 0.12), transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; align-items: center; }
.hero-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-terracotta); box-shadow: var(--shadow-soft); }
.hero-frame img { width: 100%; height: 460px; object-fit: cover; }

.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border-terracotta); border-radius: var(--radius-md); padding: 2.2rem; display: flex; flex-direction: column; gap: 1rem; }
.feature-card:hover { transform: translateY(-5px); background: var(--bg-card-hover); }
.feature-num { width: 48px; height: 48px; border-radius: 12px; background: rgba(192, 92, 70, 0.15); border: 1px solid var(--border-terracotta); color: var(--accent-terracotta); display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-weight: 700; font-size: 1.3rem; }

.spotlight-card { background: linear-gradient(135deg, rgba(12,10,9,0.95), rgba(44,36,32,0.9)); border: 1px solid var(--border-terracotta); border-radius: var(--radius-lg); padding: 3rem; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: center; }

.map-wrapper { background: var(--bg-card); border: 1px solid var(--border-terracotta); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 340px; min-height: 460px; }
#loft-map { width: 100%; height: 100%; min-height: 440px; }
.map-sidebar { background: var(--bg-secondary); padding: 1.5rem; border-left: 1px solid var(--border-dark); display: flex; flex-direction: column; gap: 1rem; }
.city-chip { background: rgba(255,255,255,0.03); border: 1px solid var(--border-dark); border-radius: 8px; padding: 1rem; cursor: pointer; }
.city-chip.active, .city-chip:hover { border-color: var(--accent-terracotta); background: rgba(192, 92, 70, 0.15); }

.pricing-card { background: var(--bg-card); border: 1px solid var(--border-terracotta); border-radius: var(--radius-lg); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.pricing-card.featured { border-color: var(--accent-terracotta); background: linear-gradient(180deg, rgba(44,36,32,0.95), rgba(64,52,46,0.9)); transform: scale(1.03); box-shadow: var(--shadow-terracotta); }

.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-terracotta); border-radius: var(--radius-md); overflow: hidden; }
.faq-q { padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; font-weight: 600; cursor: pointer; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.5rem; color: var(--text-muted); }
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.25rem 1.5rem; }

.modal-overlay { position: fixed; inset: 0; background: rgba(12, 10, 9, 0.88); backdrop-filter: blur(8px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: 0.3s; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box { background: var(--bg-secondary); border: 1px solid var(--border-terracotta); border-radius: var(--radius-lg); padding: 2.5rem; width: 100%; max-width: 520px; position: relative; }
.form-input, .form-select { width: 100%; padding: 0.85rem 1rem; background: rgba(12,10,9,0.8); border: 1px solid var(--border-terracotta); border-radius: 8px; color: var(--text-main); font-family: inherit; margin-bottom: 1.2rem; }

.cookie-bar { position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; max-width: 850px; margin: 0 auto; background: var(--bg-secondary); border: 1px solid var(--border-terracotta); border-radius: var(--radius-md); padding: 1.2rem 1.8rem; z-index: 900; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
