:root {
  --bg: #f8f5ef;
  --text: #1d2a2e;
  --muted: #657174;
  --brand: #b45f32;
  --brand-dark: #7f3b1e;
  --card: #ffffff;
  --line: #e7ded1;
  --dark: #102229;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  min-height: 92vh;
  background:
    linear-gradient(rgba(16, 34, 41, 0.62), rgba(16, 34, 41, 0.65)),
    url("images/hero-romania.jpg") center/cover no-repeat;
  color: white;
}

.navbar {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
}

.hero {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 110px 0 130px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #ffd2ac;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  letter-spacing: -0.07em;
  margin: 12px 0 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.25rem;
  margin: 18px 0 10px;
}

.hero-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 16px 34px rgba(0,0,0,0.22);
}

.btn.secondary {
  background: rgba(255,255,255,0.14);
  color: white;
  border: 1px solid rgba(255,255,255,0.45);
}

.section {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 86px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.intro p:last-child {
  font-size: 1.16rem;
  color: var(--muted);
}

.cards,
.destination-grid,
.features {
  display: grid;
  gap: 24px;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.destination-card,
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 20px 45px rgba(47, 36, 25, 0.06);
}

.card img,
.destination-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  background: #eee;
}

.card p,
.destination-card p,
.private-content p,
.contact-section p {
  color: var(--muted);
}

.destination-grid {
  grid-template-columns: repeat(4, 1fr);
}

.private-section {
  width: 100%;
  background:
    linear-gradient(rgba(16, 34, 41, 0.72), rgba(16, 34, 41, 0.74)),
    url("images/private-tour-banner.jpg") center/cover no-repeat;
  color: white;
  padding: 110px max(4%, calc((100% - 1180px) / 2));
}

.private-content {
  max-width: 650px;
}

.private-content p {
  color: rgba(255,255,255,0.84);
  margin-bottom: 30px;
}

.features {
  grid-template-columns: repeat(4, 1fr);
}

.features div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.features strong,
.features span {
  display: block;
}

.features strong {
  font-size: 1.05rem;
}

.features span {
  color: var(--muted);
  margin-top: 6px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.contact-card {
  padding: 34px;
}

.contact-card a {
  color: var(--brand-dark);
  font-weight: 800;
}

footer {
  background: var(--dark);
  color: rgba(255,255,255,0.76);
  text-align: center;
  padding: 30px 16px;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .intro,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cards,
  .destination-grid,
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 80px;
  }
}

@media (max-width: 560px) {
  .cards,
  .destination-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .private-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}
