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

body {
  font-family: 'Georgia', serif;
  background: #fdf6ee;
  color: #2c1a0e;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1511920170033-f8396924c348?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(30,12,4,0.72) 0%, rgba(90,45,10,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
}
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fde8c0;
  font-family: sans-serif;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.tagline {
  font-size: 1.25rem;
  color: #fde8c0;
  margin-bottom: 2rem;
  font-style: italic;
}
.btn {
  display: inline-block;
  background: #c0622a;
  color: #fff;
  text-decoration: none;
  padding: .85rem 2rem;
  border-radius: .35rem;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  transition: background .2s;
}
.btn:hover { background: #a04e1e; }

/* DETAILS CARDS */
.details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 4rem 2rem;
  background: #2c1a0e;
}
.card {
  background: #3d2510;
  border: 1px solid #5a3520;
  border-radius: .75rem;
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 180px;
  flex: 1 1 180px;
  max-width: 260px;
}
.card .icon { font-size: 2rem; margin-bottom: .75rem; }
.card h3 { color: #f0c080; font-family: sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.card p { color: #fde8c0; font-size: 1.15rem; }
.card a { color: #f0a060; text-decoration: none; }
.card a:hover { text-decoration: underline; }

/* ABOUT */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 5rem auto;
  padding: 0 2rem;
  gap: 3rem;
}
.about-img-wrap {
  flex: 1 1 320px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
}
.about-img-wrap img { width: 100%; height: 360px; object-fit: cover; display: block; }
.about-text { flex: 1 1 320px; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 1.25rem; color: #3d1e08; }
.about-text p { font-size: 1.1rem; line-height: 1.75; color: #4a2e18; margin-bottom: 1rem; }

/* TOPICS */
.topics {
  background: #2c1a0e;
  padding: 5rem 2rem;
}
.topics-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.topics-text { flex: 1 1 320px; }
.topics-text h2 { font-size: 2.2rem; color: #fde8c0; margin-bottom: 1.5rem; }
.topics-text ul { list-style: none; }
.topics-text li {
  font-family: sans-serif;
  font-size: 1rem;
  color: #f0c080;
  padding: .6rem 0;
  border-bottom: 1px solid #4a2e18;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.topics-text li::before { content: '☕'; font-size: .9rem; }
.topics-img-wrap {
  flex: 1 1 320px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.topics-img-wrap img { width: 100%; height: 360px; object-fit: cover; display: block; }

/* AMSTERDAM BANNER */
.amsterdam {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.amsterdam img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.amsterdam-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,8,2,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2.5rem;
}
.amsterdam-overlay p {
  color: #fde8c0;
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: .05em;
}

/* FOOTER / HASHTAGS */
.hashtags {
  background: #1a0d05;
  text-align: center;
  padding: 3rem 2rem;
}
.hashtags p { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-bottom: .75rem; }
.hashtags span {
  background: #3d2510;
  color: #f0a060;
  font-family: sans-serif;
  font-size: .85rem;
  padding: .35rem .9rem;
  border-radius: 2rem;
  letter-spacing: .03em;
}
.footer-note { color: #7a4a28; font-style: italic; font-size: .95rem; display: block; margin-top: .5rem; }

@media (max-width: 640px) {
  .about, .topics-inner { flex-direction: column; }
  .about-img-wrap img, .topics-img-wrap img { height: 240px; }
  .amsterdam { height: 240px; }
}
