/* ============================================
   dhlnepal.com — Landing Page Styles
   Folder: /css/style.css
   ============================================ */

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

:root {
  --snow:    #FAFAF8;
  --ink:     #1A1A1A;
  --mist:    #F0EDE7;
  --slate:   #5A5A5A;
  --gold:    #C8943A;
  --gold-lt: #F0D9B0;
  --pine:    #2D5A3D;
  --pine-lt: #E8F0EB;
  --white:   #FFFFFF;
  --radius:  12px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--snow);
  color: var(--ink);
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: var(--white);
  position: sticky; top: 0; z-index: 100;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--pine); }
.nav-badge {
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--pine) 0%, #1b3d2a 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 5% 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 18px;
  position: relative;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 20px;
  position: relative;
}
.hero h1 .domain {
  color: var(--gold-lt);
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
  position: relative;
}
.price-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 22px 44px;
  margin-bottom: 36px;
  position: relative;
}
.price-tag .label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 4px;
}
.price-tag .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.price-tag .currency { font-size: 1.3rem; vertical-align: super; }
.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
  position: relative;
}
.hero-cta:hover { background: #b07e2c; transform: translateY(-2px); }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--mist);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 28px 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 48px;
  align-items: center;
}
.contact-strip .company {
  font-weight: 700;
  font-size: 1rem;
  color: var(--pine);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--slate);
  text-decoration: none;
  transition: color .2s;
}
.contact-item:hover { color: var(--pine); }
.contact-item svg { flex-shrink: 0; }

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  padding: 64px 5% 36px;
}
.section-header .eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
}
.section-header p {
  color: var(--slate);
  margin-top: 10px;
  font-size: .95rem;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* ── LISTINGS ── */
.listings {
  padding: 8px 5% 72px;
  max-width: 1100px;
  margin: 0 auto;
}
.listings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.listing-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .2s;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
}
.listing-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease, box-shadow .25s;
}
.listing-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.10);
  transform: translateY(-3px);
}

/* ── CARD IMAGE ── */
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--pine-lt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.card-icon svg { color: var(--pine); }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.card-body p {
  font-size: .88rem;
  color: var(--slate);
  line-height: 1.6;
  flex: 1;
}
.card-footer {
  padding: 0 28px 28px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pine);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  border: 1.5px solid var(--pine);
  padding: 9px 20px;
  border-radius: 40px;
  transition: background .2s, color .2s;
}
.card-link:hover {
  background: var(--pine);
  color: var(--white);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 28px 5%;
  font-size: .8rem;
  line-height: 1.7;
}
footer a { color: var(--gold-lt); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .listings-grid { grid-template-columns: 1fr; }
  .price-tag { padding: 18px 32px; }
  .hero { padding: 60px 5% 70px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
