
:root {
  --bg: #f5fafc;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #0ea5e9;
  --accent-soft: #e0f2fe;
  --pill-bg: #eff6ff;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --font-serif: "Georgia", "Times New Roman", serif;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header – travel-ish */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245,250,252,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226,232,240,0.9);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  font-size: 1.35rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.btn-outline {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--accent);
}

/* Main */

.main {
  flex: 1 0 auto;
  padding: 2.2rem 0 3.2rem;
}

/* Hero – Airbnb-ish, big image + search-like bar */

.hero {
  margin-bottom: 2.8rem;
}

.hero-inner {
  background: linear-gradient(to bottom, #e0f2fe, #f5fafc);
  border-radius: 1.8rem;
  overflow: hidden;
  border: 1px solid #dbeafe;
}

.hero-top {
  position: relative;
}

.hero-media {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title-block {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 1.4rem;
  max-width: 520px;
  background: rgba(15,23,42,0.7);
  color: #f9fafb;
  padding: 0.9rem 1rem;
  border-radius: 1.1rem;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  opacity: 0.9;
  margin-bottom: 0.35rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.1;
  margin: 0 0 0.3rem;
}

.hero-sub {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.95;
}

/* Search-like bar */

.hero-bottom {
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.4rem 0.5rem 0.4rem 0.7rem;
}

.search-label {
  font-size: 0.78rem;
  color: var(--muted);
  padding-right: 0.6rem;
  border-right: 1px solid #e5e7eb;
}

.search-pill {
  flex: 1 0 170px;
  font-size: 0.86rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: none;
  outline: none;
}

.search-cta {
  font-size: 0.82rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
}

.search-cta:hover {
  opacity: 0.96;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
}

.chip {
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  border: 1px solid #dbeafe;
  background: var(--pill-bg);
  color: #1d4ed8;
}

/* Sections */

.section {
  margin-top: 2.4rem;
}

.section-header {
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
}

.section-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Trip phases – 3-column cards */

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

.phase-card {
  background: var(--card);
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  padding: 0.9rem 1rem 1rem;
  font-size: 0.88rem;
}

.phase-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.phase-card ul {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.phase-card li {
  margin-bottom: 0.25rem;
}

/* Experiences grid – like Airbnb cards */

.experiences {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.experience {
  background: var(--card);
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  font-size: 0.86rem;
}

.experience img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.experience-body {
  padding: 0.7rem 0.75rem 0.8rem;
}

.experience-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.experience-title {
  margin: 0 0 0.25rem;
  font-weight: 600;
}

.experience-text {
  margin: 0;
  color: var(--muted);
}

/* How it works – simple steps band */

.steps-band {
  background: #e0f2fe;
  border-radius: 1.6rem;
  padding: 1rem 1.1rem 1.2rem;
  border: 1px solid #bfdbfe;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  font-size: 0.9rem;
}

.step {
  background: rgba(255,255,255,0.9);
  border-radius: 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #dbeafe;
}

.step-num {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #2563eb;
  margin-bottom: 0.25rem;
}

.step-title {
  margin: 0 0 0.25rem;
  font-weight: 600;
}

.step-text {
  margin: 0;
  color: var(--muted);
}

/* Contact */

.contact-section {
  margin-top: 2.6rem;
}

.contact-card {
  background: var(--card);
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
}

.contact-main h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}

.contact-main p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-main ul {
  margin: 0 0 0.5rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-main li {
  margin-bottom: 0.25rem;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.email-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 0.9rem;
  text-decoration: none;
}

.contact-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: #f3f4f6;
  padding: 1rem 0 1.4rem;
  margin-top: 3rem;
}

.footer-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 640px;
}

.footer-shell a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-style: dotted;
}

.dot {
  opacity: 0.5;
}

/* Simple pages */

.simple-main {
  padding-top: 2.4rem;
}

.simple-card {
  max-width: 720px;
  margin-top: 1.6rem;
  background: var(--card);
  border-radius: 1.3rem;
  border: 1px solid var(--line);
  padding: 1.1rem 1.3rem 1.3rem;
  font-size: 0.9rem;
}

.simple-card h2 {
  margin-top: 0.6rem;
  font-size: 1rem;
}

.simple-card p,
.simple-card li {
  color: var(--muted);
  font-size: 0.86rem;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-media img {
    height: 220px;
  }
  .phase-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .experiences {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-list {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .header-shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .hero-title-block {
    position: static;
    margin: 0.6rem auto 0;
  }
  .hero-media img {
    height: 200px;
  }
  .experiences {
    grid-template-columns: minmax(0, 1fr);
  }
}
