

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #2f2623;
    background:
      radial-gradient(circle at top left, rgba(255, 220, 190, 0.9), transparent 30%),
      linear-gradient(135deg, #fff7ed 0%, #f8e8dc 45%, #f4d6c8 100%);
    line-height: 1.6;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .hero {
    min-height: 72vh;
    padding: 24px;
    display: flex;
    flex-direction: column;
  }
  
  .navbar {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(101, 64, 43, 0.12);
  }
  
  .logo {
    font-weight: 800;
    letter-spacing: -0.03em;
  }
  
  .nav-links {
    display: flex;
    gap: 16px;
    font-size: 0.95rem;
    color: #6f5144;
  }
  
  .nav-links a {
    padding: 8px 12px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
  }
  
  .nav-links a:hover {
    color: #2f2623;
    background: rgba(255, 255, 255, 0.7);
  }
  
  .hero-content {
    width: min(900px, 100%);
    margin: auto;
    padding: 80px 0;
    text-align: center;
  }
  
  .eyebrow {
    margin-bottom: 12px;
    color: #b06448;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  
  .hero h1 {
    max-width: 80vw;
    margin: 0 auto 24px;
    font-size: clamp(2.6rem, 8vw, 6.4rem);
    line-height: 0.95;
    letter-spacing: -0.08em;
  }
  
  .hero-content p:last-child {
    max-width: 620px;
    margin: 0 auto;
    color: #6f5144;
    font-size: 1.15rem;
  }
  
  .section {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto 80px;
  }
  
  .section-header {
    max-width: 720px;
    margin-bottom: 28px;
  }
  
  .section-header h2 {
    margin-bottom: 8px;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.05em;
  }
  
  .section-header p:last-child {
    color: #705449;
  }
  
  .tour-card,
  .goal-card {
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 24px 80px rgba(101, 64, 43, 0.12);
    backdrop-filter: blur(18px);
  }
  
  .tour-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }
  
.tour-image {
  min-height: 340px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(175, 101, 72, 0.2), rgba(244, 182, 122, 0.35)),
    linear-gradient(160deg, #f6caa9, #f8e6d5);
}

.tour-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  object-fit: cover;
}
  
  .tour-content {
    padding: clamp(28px, 5vw, 48px);
  }
  
  .tour-date {
    margin-bottom: 10px;
    color: #b06448;
    font-size: 0.9rem;
    font-weight: 700;
  }
  
  .tour-content h3 {
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
  }
  
  .tour-content > p {
    margin-bottom: 24px;
    color: #665047;
  }
  
  .tour-facts {
    display: grid;
    gap: 10px;
    list-style: none;
  }
  
  .tour-facts li {
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.55);
  }
  
  .goals-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  
  .goal-card {
    padding: clamp(24px, 4vw, 36px);
  }
  
  .goal-card-header {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  
  .goal-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #fff4ea;
    font-size: 1.7rem;
  }
  
  .goal-card h3 {
    margin-bottom: 4px;
    font-size: 1.55rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
  }
  
  .goal-card-header p {
    color: #75574a;
    font-size: 0.95rem;
  }
  
  .checklist {
    display: grid;
    gap: 12px;
  }
  
  .checklist label {
    min-height: 48px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(176, 100, 72, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.56);
    color: #4d3d37;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }
  
  .checklist label:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(176, 100, 72, 0.28);
  }
  
  .checklist input {
    width: 20px;
    height: 20px;
    accent-color: #b06448;
    cursor: pointer;
  }
  
  .checklist label:has(input:checked) {
    color: #8a756d;
    text-decoration: line-through;
    background: rgba(255, 255, 255, 0.35);
  }
  
  .footer {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 48px;
    color: #75574a;
    text-align: center;
  }
  
  @media (max-width: 780px) {
    .hero {
      min-height: auto;
    }
  
    .navbar {
      align-items: flex-start;
      flex-direction: column;
      border-radius: 28px;
    }
  
    .nav-links {
      width: 100%;
      justify-content: space-between;
    }
  
    .hero-content {
      padding: 64px 0 48px;
      text-align: left;
    }
  
    .hero h1,
    .hero-content p:last-child {
      margin-left: 0;
    }
  
    .tour-card,
    .goals-grid {
      grid-template-columns: 1fr;
    }
  
    .tour-image {
      min-height: 220px;
    }
  }