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

:root {
  --amber: #C8873A;
  --dark: #1A1208;
  --cream: #F5EDD9;
  --sage: #5A6B4E;
  --text: #2C1E0A;
}

body {
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  min-height: 100vh;
  padding: 40px 20px 60px;
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
  margin-bottom: 60px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 12px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 14px;
  color: #7A6040;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px auto;
  max-width: 200px;
  justify-content: center;
}
.divider span { width: 50px; height: 1px; background: var(--amber); display: block; }
.divider::before { content: '🍹'; font-size: 16px; }

.usp-banner {
  max-width: 860px;
  width: 100%;
  margin: 0 auto 40px;
  background: var(--dark);
  color: var(--cream);
  border-radius: 4px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.usp-banner .usp-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  flex-shrink: 0;
}

.usp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.usp-pill {
  background: rgba(200,135,58,0.18);
  border: 1px solid rgba(200,135,58,0.35);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  color: #F5D9A8;
}

.listings {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(26,18,8,0.08);
  border: 1px solid rgba(200,135,58,0.15);
}

.card-header {
  padding: 28px 36px 22px;
  border-bottom: 1px solid rgba(200,135,58,0.12);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.platform-badge {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 4px;
}

.konfetti .platform-badge { background: #FFE4F0; color: #D4006A; }
.airbnb .platform-badge { background: #FFE8E4; color: #D4003A; }

.card-header-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.card-header-left p {
  font-size: 12px;
  color: #9A7B50;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-body { padding: 30px 36px; }

.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 26px;
}
.section-label:first-child { margin-top: 0; }

.listing-text {
  font-size: 15px;
  line-height: 1.85;
  color: #3A2C12;
  font-weight: 300;
}

.listing-text strong { font-weight: 500; color: var(--dark); }

.fresh-callout {
  background: linear-gradient(135deg, #F5EDD9 0%, #EDE0C4 100%);
  border: 1px solid rgba(200,135,58,0.3);
  border-left: 3px solid var(--amber);
  border-radius: 3px;
  padding: 16px 20px;
  margin: 18px 0;
  font-size: 14px;
  line-height: 1.7;
  color: #3A2C12;
  font-style: italic;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.highlight-item {
  background: var(--cream);
  border-radius: 3px;
  padding: 12px 16px;
  border-left: 2px solid var(--amber);
}

.highlight-item .hi-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 3px;
  font-weight: 500;
}

.highlight-item .hi-val {
  font-size: 14px;
  color: var(--dark);
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--dark);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200,135,58,0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber);
}

.btn-outline:hover {
  background: var(--amber);
  color: var(--cream);
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 20px;
  background: var(--dark);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: background 0.2s;
}
.copy-btn:hover { background: var(--amber); }
.copy-btn.copied { background: var(--sage); }

.tip-box {
  background: #F0F5EC;
  border: 1px solid #C8D9BE;
  border-radius: 3px;
  padding: 14px 18px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--sage);
  line-height: 1.6;
}
.tip-box strong { color: #3A5030; }

/* Landing Page Specifics */
.landing-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 100px;
}

.main-logo {
  max-width: 1024px;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  mix-blend-mode: multiply;
  filter: contrast(1.1) brightness(1.1);
}

.cta-group {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.landing-cta {
  flex-direction: column;
  width: 100%;
  max-width: 450px;
}

@media (max-width: 600px) {
  body { padding: 20px 15px; }
  header { margin-bottom: 40px; }
  h1 { font-size: 2rem; }
  
  .card-header, .card-body { padding: 20px; }
  .highlights { grid-template-columns: 1fr; }
  .usp-banner { padding: 16px 20px; gap: 12px; text-align: center; justify-content: center; }
  .usp-pills { justify-content: center; }
  
  .cta-group { width: 100%; max-width: 100%; }
  .btn-flex { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  
  .page-img { height: 200px; }
}

.btn-flex {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.btn-flex a {
  flex: 1;
  min-width: 0; /* Prevents overflow in flexbox */
}

.page-img {
  width: 100%;
  height: clamp(200px, 40vh, 400px);
  object-fit: cover;
  border-bottom: 1px solid rgba(200,135,58,0.12);
}
