body {
  font-family: 'Inter', sans-serif;
  background: #fbf7f2;
  color: #222;
  line-height: 1.65;
  margin: 0;
}

h1, h2, h3 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  margin-top: 0;
}

h1 {
  font-size: 42px;
  font-weight: 800;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  font-weight: 700;
}

section {
  padding: 72px 20px;
  max-width: 1160px;
  margin: auto;
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 100;
}

.nav-inner {
  max-width: 1160px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}

.logo {
  font-weight: 700;
  font-size: 18px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #222;
  font-weight: 700;
  font-size: 18px;
}

.logo-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ef3340;
}

/* HERO */

.hero {
  min-height: 72vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px;
  overflow: hidden;
  background:
    linear-gradient(rgba(246, 241, 232, 0.78), rgba(251, 247, 242, 0.88)),
    url("images/brugge.jpg") center center / cover no-repeat;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 40px 32px;
  border-radius: 22px;
  max-width: 760px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  color: #151515;
  margin-bottom: 10px;
}

.subtitle {
  color: #c79a00;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.hero-text {
  color: #2d2d2d;
  max-width: 54ch;
  margin: 0 auto;
}

.hero-buttons {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  background: #ef3340;
  color: white;
  border: 1px solid transparent;
  min-width: 150px;
  box-sizing: border-box;
}

.btn-outline {
  background: transparent;
  color: #1d1d1d;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.btn-blog {
  background: #f3d624;
  color: #1d1d1d;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .btn {
    width: 220px;
    max-width: 220px;
    margin: 0 auto;
  }
}

/* INTRO */

.intro-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
}

.intro-photo {
  display: flex;
  justify-content: center;
}

.intro-photo img {
  width: 100%;
  max-width: 260px;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 800px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .intro-photo {
    order: -1;
  }

  .intro-photo img {
    max-width: 190px;
    margin: 0 auto;
  }
}

/* BELGIUM FACES */

.belgium-faces {
  padding: 72px 20px;
}

.faces-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.face-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.face-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.face-card-body {
  padding: 20px;
}

.face-card h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
}

.face-card p {
  margin: 0;
  color: #4a4a4a;
}

@media (max-width: 1000px) {
  .faces-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .faces-grid {
    grid-template-columns: 1fr;
  }
}

/* WHY */

.why-text {
  margin-bottom: 32px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.why-card h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.why-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.why-photos img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 700px) {
  .why-grid,
  .why-photos {
    grid-template-columns: 1fr;
  }
}

/* SERVICES */

#services {
  scroll-margin-top: 90px;
}

.services {
  padding: 80px 20px;
  background: #f8f7f3;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 16px;
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.service-card.featured {
  border: 2px solid #c7a84f;
  transform: translateY(-6px);
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.3;
}

.service-card h3 span {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  margin-top: 4px;
}

.service-card p {
  margin: 0;
  line-height: 1.7;
  color: #444;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: #333;
  line-height: 1.8;
}

.service-link {
  margin-top: auto;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  color: #8a6a13;
}

.service-link:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    transform: none;
  }
}

/* CITIES */

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin-top: 40px;
}

.city-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.city-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
}

.city-card h3 {
  margin: 18px 18px 10px 18px;
  font-size: 22px;
  line-height: 1.2;
}

.city-card p {
  margin: 0 18px 20px 18px;
  color: #444;
}

@media (max-width: 800px) {
  .city-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .city-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .city-card h3,
  .city-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .city-card h3 {
    max-width: 22ch;
  }

  .city-card p {
    max-width: 30ch;
  }
}

@media (max-width: 640px) {
  .city-card h3 {
    font-size: 20px;
  }

  .city-card p {
    font-size: 15px;
  }
}

/* PROGRAMS / INSPIRATIONS */

.programs {
  text-align: center;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.program-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.program-card h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 1.25;
}

.program-card p {
  margin: 0;
  color: #4a4a4a;
}

@media (max-width: 1000px) {
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card p {
    max-width: 30ch;
    margin: auto;
  }
}

/* BLOG */

.page-hero {
  padding: 72px 20px 36px;
  background: #f6f1e8;
}

.page-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 12px 0;
}

.page-hero p {
  margin: 0;
  max-width: 760px;
  color: #4b4b4b;
}

.blog-archive {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.blog-all-link {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.09);
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 20px;
}

.blog-date {
  margin: 0 0 10px 0;
  color: #7a7a7a;
  font-size: 14px;
}

.blog-card h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 1.25;
}

.blog-card p:last-child {
  margin: 0;
  color: #4a4a4a;
}

@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* BLOG POST */

.blog-post {
  max-width: 820px;
  margin: 80px auto;
  padding: 0 20px;
}

.blog-post h1 {
  margin-bottom: 10px;
}

.blog-post img {
  width: 100%;
  border-radius: 12px;
  margin: 30px 0;
}

.blog-content p {
  line-height: 1.65;
  margin-bottom: 18px;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
  color: #444;
  font-weight: 600;
}

.back-link:hover {
  text-decoration: underline;
}

/* CONTACT */

.contact {
  text-align: center;
  margin-top: 60px;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.contact-icons i {
  font-size: 32px;
  margin-bottom: 8px;
  transition: transform 0.2s ease;
}

.contact-icons a:hover i {
  transform: scale(1.2);
}

/* FOOTER */

.site-footer {
  text-align: center;
  padding: 24px 20px 40px;
  font-size: 14px;
  color: #666;
}

/* SCROLL OFFSETS */

#services,
#cities,
#inspirations,
#blog,
#contact {
  scroll-margin-top: 90px;
}