/* Sediora - Rich Elegant, Rose/Wine Colors, Purple Accents, Generous Spacing */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #9f1239;
  --color-accent: #7c3aed;
  --color-rose-50: #fff1f2;
  --color-rose-100: #ffe4e6;
  --color-rose-200: #fecdd3;
  --color-rose-300: #fda4af;
  --color-rose-400: #fb7185;
  --color-rose-700: #be123c;
  --color-rose-800: #9f1239;
  --color-rose-900: #881337;
  --color-purple-50: #faf5ff;
  --color-purple-100: #f3e8ff;
  --color-purple-200: #e9d5ff;
  --color-purple-500: #8b5cf6;
  --color-purple-600: #7c3aed;
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --color-bg: #fdf2f4;
  --color-bg-white: #ffffff;
  --color-border: #f3e8ee;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(159, 18, 57, 0.04);
  --shadow-md: 0 4px 20px rgba(159, 18, 57, 0.08);
  --shadow-lg: 0 12px 40px rgba(159, 18, 57, 0.1);
  --container: 1140px;
}

html {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: calc(var(--radius) - 2px);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  border-color: transparent;
}

.btn--primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(159, 18, 57, 0.25);
  transform: translateY(-1px);
}

.btn--outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

.btn--block {
  width: 100%;
}

/* Header */
.site-header {
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.95);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-size: 1.625rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  font-style: italic;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.3s;
}

.site-nav a:hover {
  color: var(--color-primary);
}

/* Hero */
.hero {
  background: linear-gradient(160deg, #9f1239 0%, #881337 40%, #4c1d95 100%);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(251, 113, 133, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  position: relative;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  position: relative;
  line-height: 1.7;
}

.hero__search {
  display: flex;
  max-width: 580px;
  margin: 0 auto;
  background: var(--color-bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  position: relative;
}

.hero__search input {
  flex: 1;
  padding: 1.125rem 1.5rem;
  border: none;
  font-size: 1rem;
  outline: none;
  background: transparent;
  color: var(--color-text);
}

.hero__search .btn {
  border-radius: 0;
  padding: 1.125rem 2rem;
}

/* Section Titles */
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Categories */
.categories {
  padding: 5rem 0;
  background: var(--color-bg-white);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.category-card:hover {
  background: var(--color-rose-50);
  border-color: var(--color-rose-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.category-card__name {
  font-weight: 600;
  font-size: 1.0625rem;
}

.category-card__count {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* Featured */
.featured {
  padding: 5rem 0;
  background: var(--color-bg);
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.listing-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.listing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.listing-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.listing-card__body {
  padding: 1.5rem;
}

.listing-card__title {
  font-size: 1.1875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}

.listing-card__category {
  font-size: 0.8125rem;
  color: var(--color-accent);
  font-weight: 600;
}

.listing-card__location {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.375rem;
}

.listing-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.listing-card__rating .stars {
  color: var(--color-rose-400);
}

/* Stats */
.stats {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-rose-900), #4c1d95);
  color: #fff;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.stat__number {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-rose-200);
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.9375rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background: var(--color-bg-white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 1rem;
}

.step {
  text-align: center;
  padding: 2.5rem 2rem;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.step p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* CTA */
.cta {
  padding: 6rem 0;
  text-align: center;
  background: var(--color-rose-50);
}

.cta h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Listing Detail */
.listing-detail {
  padding: 2.5rem 0 5rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.listing-detail__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}

.listing-detail__hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.listing-detail__main h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.listing-detail__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.listing-detail__rating .stars {
  color: var(--color-rose-400);
  font-size: 1.25rem;
}

.listing-detail__desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.listing-detail__section {
  margin-bottom: 2.5rem;
}

.listing-detail__section h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.contact-card,
.claim-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-card h3,
.claim-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.contact-card__item {
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
}

.contact-card__item a {
  color: var(--color-accent);
  text-decoration: none;
}

.contact-card__item a:hover {
  text-decoration: underline;
}

.claim-card {
  background: var(--color-purple-50);
  border-color: var(--color-purple-100);
}

.claim-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: #1f1225;
  color: #d8c4df;
  padding: 3.5rem 0 2.5rem;
  margin-top: auto;
}

.site-footer__brand strong {
  font-size: 1.375rem;
  color: var(--color-rose-300);
  font-style: italic;
}

.site-footer__brand p {
  font-size: 0.875rem;
  margin-top: 0.375rem;
  opacity: 0.7;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.site-footer__links a {
  color: #d8c4df;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.site-footer__links a:hover {
  color: var(--color-rose-300);
}

.site-footer__copy {
  font-size: 0.8125rem;
  opacity: 0.5;
  margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.125rem;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero__search {
    flex-direction: column;
  }

  .hero__search .btn {
    border-radius: 0;
  }

  .listing-detail__grid {
    grid-template-columns: 1fr;
  }

  .site-header .container {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .container {
    padding: 0 1.25rem;
  }
}
