:root {
  --xn-red: #c0392b;
  --xn-red-dark: #96281b;
  --xn-charcoal: #1f2937;
  --xn-dark: #111827;
  --xn-gold: #C4A882;
  --xn-gold-light: #DFCAAE;
  --xn-border: #E5E7EB;
  --xn-text: #374151;
  --xn-muted: #6B7280;
}

.xn-lp-container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.xn-hero {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #ffffff;
  padding: 60px 0 70px;
  position: relative;
  border-bottom: 3px solid var(--xn-red);
}

.xn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fca5a5;
  background: rgba(192, 57, 43, 0.2);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(192, 57, 43, 0.4);
}
.xn-eyebrow.gold {
  color: var(--xn-gold-light);
  background: rgba(196, 168, 130, 0.15);
  border-color: rgba(196, 168, 130, 0.35);
}
.xn-eyebrow.on-light {
  color: var(--xn-red-dark);
  background: rgba(192, 57, 43, 0.08);
  border-color: rgba(192, 57, 43, 0.2);
}

.xn-btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #c0392b 0%, #96281b 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(192, 57, 43, 0.35);
  transition: all 0.25s ease;
}
.xn-btn-red:hover {
  background: linear-gradient(135deg, #d9534f 0%, #c0392b 100%);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.xn-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 26px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.25s ease;
}
.xn-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
  color: #ffffff !important;
}

.xn-form-card.dark {
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.xn-form-group {
  margin-bottom: 14px;
}
.xn-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #cbd5e1;
}

.xn-form-control {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  font-size: 13px;
  box-sizing: border-box;
  font-family: inherit;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}
.xn-form-control:focus {
  outline: none;
  border-color: var(--xn-red);
}

.xn-form-alert {
  display: none;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 14px;
  font-size: 13px;
}
.xn-form-alert.success {
  display: block;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.xn-trust-strip {
  background: #111827;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  color: #e5e7eb;
}
.xn-trust-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.xn-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.xn-trust-item svg {
  color: #f87171;
  flex-shrink: 0;
}

.xn-grid-2 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.xn-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.xn-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 991px) {
  .xn-grid-2, .xn-grid-3, .xn-grid-4 {
    grid-template-columns: 1fr;
  }
}

.xn-section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.xn-section-title h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--xn-charcoal);
  margin: 0 0 12px;
  line-height: 1.2;
}
.xn-section-title p {
  color: var(--xn-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.xn-gallery-card {
  background: #ffffff;
  border: 1px solid var(--xn-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.xn-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}
.xn-gallery-img {
  height: 220px;
  overflow: hidden;
}
.xn-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xn-gallery-body {
  padding: 20px;
}
.xn-gallery-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--xn-charcoal);
  margin: 0 0 6px;
}
.xn-gallery-body p {
  color: var(--xn-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}