/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --cream: #f8f5ef;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #888;
  --accent: #c9a96e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.1) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 800px;
}
.hero-pre {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tagline {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: inline-block;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.8rem 2.5rem;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.hero-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* === Nav === */
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.2rem 2rem;
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}
nav a:hover { color: var(--gold); }

/* === Main === */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === Sections === */
section {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-header.light h2 {
  color: var(--white);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 300;
  font-style: italic;
}
.section-header.light .section-subtitle {
  color: rgba(255,255,255,0.5);
}

/* === Content with Image === */
.content-with-image {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.content-with-image.reverse {
  grid-template-columns: 1.5fr 1fr;
}
.content-with-image.reverse .content-image {
  order: -1;
}

.portrait {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.lifestyle-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.img-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.8rem;
}

/* === Dark sections === */
.dark-section {
  position: relative;
  background: var(--dark);
  color: var(--white);
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-bottom: none;
  overflow: hidden;
}
.dark-section .section-header h2 { color: var(--white); }
.dark-section .section-subtitle { color: rgba(255,255,255,0.5); }
.dark-section p { color: rgba(255,255,255,0.85); }

.parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
}

.content-box {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

/* === Blockquote === */
blockquote {
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
  padding: 1.2rem 2rem;
  background: rgba(201,169,110,0.08);
  border-radius: 0 8px 8px 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
}
blockquote cite {
  display: block;
  margin-top: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-light);
}
.dark-section blockquote {
  background: rgba(201,169,110,0.1);
  color: rgba(255,255,255,0.9);
}
.dark-section blockquote cite {
  color: rgba(255,255,255,0.5);
}
.light-quote {
  color: rgba(255,255,255,0.9);
}

/* === Stats === */
.stats-row {
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0;
  justify-content: center;
  flex-wrap: wrap;
}
.fun-stat {
  text-align: center;
  padding: 1.5rem 2rem;
  background: rgba(201,169,110,0.08);
  border-radius: 12px;
  border: 1px solid rgba(201,169,110,0.15);
  min-width: 150px;
}
.fun-stat.light {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}
.fun-stat.light .stat-label {
  color: rgba(255,255,255,0.5);
}

/* === Travel Grid === */
.travel-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}
.travel-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* === Lists === */
.hot-takes, .love-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.hot-takes li, .love-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 1rem;
}
.hot-takes li em {
  color: var(--text-light);
}

/* === Cards === */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.card p { margin-bottom: 0; font-size: 0.95rem; color: var(--text); }
.card-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.3rem;
}

/* === Love Section === */
.love-content {
  max-width: 700px;
  margin: 0 auto;
}

/* === Source links === */
.source-link { margin-top: 1.5rem; }
.source-link a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dashed var(--gold);
  transition: opacity 0.2s;
}
.source-link a:hover { opacity: 0.7; }
.source-link.light a { color: var(--gold-light); border-color: var(--gold-light); }

/* === Footer === */
footer {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--black);
  color: rgba(255,255,255,0.4);
}
.footer-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  nav { gap: 0.8rem; flex-wrap: wrap; }
  nav a { font-size: 0.7rem; }
  .content-with-image,
  .content-with-image.reverse {
    grid-template-columns: 1fr;
  }
  .content-with-image.reverse .content-image { order: 0; }
  .travel-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; align-items: center; }
  .dark-section { margin: 0 -2rem; padding: 5rem 2rem; }
  section { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .cards { grid-template-columns: 1fr; }
}
