:root {
  --bg: #fcf9f5;
  --cream: #fff9ef;
  --card: #ffffff;
  --accent: #c14953;
  --accent-dark: #8d2430;
  --text: #2a2a2a;
  --muted: #6b6b6b;
  --shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
}

.hero {
  min-height: 90vh;
  background: linear-gradient(120deg, rgba(12, 9, 7, 0.85), rgba(28, 22, 19, 0.65)),
              url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: #fff;
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem) 6rem;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 5;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav__links a {
  font-weight: 500;
  color: #fff;
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 0.4rem 0.75rem;
  font-size: 1.25rem;
}

.hero__content {
  margin-top: auto;
  max-width: 640px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  transition: background 0.3s ease;
}

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

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

main {
  background: var(--bg);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.about {
  background: #fff;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.about__grid article {
  background: var(--cream);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.about__grid h3 {
  margin-bottom: 0.75rem;
}

.pilgrimage {
  background: var(--bg);
}

.pilgrimage__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.packages {
  background: #fff;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.package {
  background: var(--cream);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.package--placeholder {
  text-align: center;
  justify-content: center;
}

.package__tag {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.package__summary {
  color: var(--text);
}

.package ul {
  list-style: disc;
  margin-left: 1rem;
  color: var(--muted);
}

.package__price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

.package__badge {
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(193, 73, 83, 0.15);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tourism {
  background: linear-gradient(120deg, #f5d8c7, #f2ede1);
}

.tourism__content {
  display: flex;
  justify-content: center;
}

.tourism__content > div {
  max-width: 720px;
}

.tourism ul {
  margin-top: 1rem;
  list-style: disc;
  margin-left: 1.2rem;
}

.testimonials {
  background: #fff;
}

.testimonials__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonials blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--accent-dark);
}

.contact__form {
  display: grid;
  gap: 1rem;
  background: var(--card);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.contact__form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

input,
textarea {
  margin-top: 0.4rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #dedede;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.form__status {
  min-height: 1.25rem;
  font-size: 0.95rem;
  color: var(--accent);
}

.form__status.is-success {
  color: #0b6b3f;
}

.booking {
  background: var(--bg);
}

.booking__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.booking__aside {
  background: var(--card);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  line-height: 1.8;
}

.booking__aside ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.booking__aside li + li {
  margin-top: 0.5rem;
}

.hq {
  background: #fff;
}

.hq__form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 2rem;
}

.hq__form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hq__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.hq__stats article {
  background: var(--cream);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.hq__stats strong {
  font-size: 1.5rem;
  color: var(--accent);
}

.hq__bookings {
  display: grid;
  gap: 1.25rem;
}

.hq-card {
  background: var(--card);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hq-card header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.hq-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.hq-card__status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hq-card__status select,
.hq-card__status textarea {
  width: min(240px, 100%);
}

.hq-card__status textarea {
  min-height: 70px;
}

.hq-card__status button {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.hq__empty {
  text-align: center;
  color: var(--muted);
}

.footer {
  background: #120c0d;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 2rem 1rem;
}

.footer span {
  color: #fff;
}

.footer__powered {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer__powered a {
  color: var(--accent);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.footer__powered a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 70px;
    right: 1.5rem;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.85);
    padding: 1rem 2rem;
    border-radius: 1rem;
    display: none;
  }

  .nav__links.open {
    display: flex;
  }

  .hero__cta {
    flex-direction: column;
  }

  .booking__grid {
    grid-template-columns: 1fr;
  }

  .hq-card header {
    flex-direction: column;
  }
}
