:root {
  --ink: #111111;
  --white: #ffffff;
  --gray-100: #f5f4f2;
  --gray-300: #e0ddd7;
  --gray-600: #6b6660;
  --accent: #c1502e;
  --accent-dark: #a13f22;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.placeholder-banner {
  background: #fff3cd;
  color: #664d03;
  text-align: center;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

nav.main-nav a.book-btn {
  background: var(--ink);
  color: var(--white);
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.15s;
}

.book-btn:hover {
  background: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 780px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 0 1.75rem;
  color: #f2f0ec;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.15s;
}

.hero-cta:hover {
  background: var(--accent-dark);
}

/* Section shell */
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin: 0 0 0.75rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-head p {
  color: var(--gray-600);
  font-size: 1.02rem;
  margin: 0;
}

/* Tours grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.tour-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.tour-card-body {
  padding: 1.4rem;
}

.tour-card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.tour-card-body p {
  margin: 0 0 1rem;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.5;
}

.tour-price {
  font-weight: 700;
  font-size: 0.95rem;
}

/* Why us */
.why-us {
  background: var(--ink);
  color: var(--white);
  max-width: none;
  padding: 5rem 2rem;
}

.why-us .section-head p {
  color: #cfcbc4;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  text-align: center;
}

.why-item .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  font-weight: 800;
}

.why-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.why-item p {
  color: #b9b4ac;
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.review-card {
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 1.6rem;
}

.review-card .stars {
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.review-card p.quote {
  font-style: italic;
  color: var(--gray-600);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.review-card .reviewer {
  font-weight: 700;
  font-size: 0.9rem;
}

.review-card .placeholder-tag {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a89f8f;
  background: var(--gray-100);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* CTA band */
.cta-band {
  max-width: none;
  background: var(--gray-100);
  text-align: center;
  padding: 5rem 2rem;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 0 0 1rem;
  font-weight: 800;
}

.cta-band p {
  color: var(--gray-600);
  margin: 0 0 2rem;
}

/* Footer */
footer.site-footer {
  background: var(--ink);
  color: #cfcbc4;
  padding: 3rem 2rem 2rem;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0 0 0.9rem;
}

.footer-grid p, .footer-grid a {
  color: #b9b4ac;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  color: #9a958c;
  font-size: 0.78rem;
}

@media (max-width: 720px) {
  nav.main-nav a:not(.book-btn) {
    display: none;
  }
  header.site-header {
    padding: 1rem;
  }
  section {
    padding: 3.5rem 1.25rem;
  }
}
