:root {
  --sand: #f6f1e7;
  --sea: #2f6f7e;
  --saffron: #d48b3a;
  --green: #2e6b4c;
  --charcoal: #1f2a2e;
  --muted: #6b7a81;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(31, 42, 46, 0.08);
}

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: linear-gradient(180deg, var(--white) 0%, var(--sand) 100%);
  line-height: 1.6;
}

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

a:hover,
a:focus {
  color: var(--sea);
}

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

.skip-link {
  position: absolute;
  top: -999px;
  left: -999px;
  background: var(--sea);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 10;
}

.skip-link:focus {
  top: 12px;
  left: 12px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e5e8ea;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--sea);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a.active {
  color: var(--saffron);
}

.lang-switch {
  border: 1px solid #dfe5e8;
  border-radius: 20px;
  padding: 6px 12px;
  background: var(--white);
  font-size: 0.9rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 3vw, 3.2rem);
  margin-bottom: 16px;
  color: var(--charcoal);
}

.hero-content p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 28px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--sea);
  color: var(--white);
}

.btn-secondary {
  border-color: var(--sea);
  color: var(--sea);
  background: transparent;
}

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

.hero-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 24px;
}

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

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid #eef1f2;
}

.card h3 {
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 12px;
  background: #ecf4f6;
  color: var(--sea);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.itinerary-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.itinerary-panel select,
.itinerary-panel input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #dfe5e8;
  width: 100%;
}

.itinerary-results {
  background: #f4f8f7;
  padding: 16px;
  border-radius: 12px;
  border: 1px dashed #cfe0dd;
  color: var(--green);
  min-height: 80px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline button {
  background: var(--white);
  border: 1px solid #dfe5e8;
  border-radius: 14px;
  padding: 12px 16px;
  text-align: left;
  cursor: pointer;
  transition: border 0.2s ease;
}

.timeline button.active {
  border-color: var(--saffron);
  box-shadow: var(--shadow);
}

.timeline-details {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid #eef1f2;
}

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

.gallery-grid figure {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eef1f2;
}

.gallery-grid figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #dfe5e8;
  padding: 12px;
  font-size: 0.95rem;
}

.contact-card textarea {
  min-height: 120px;
  resize: vertical;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
  background: #fff7ef;
  border-left: 4px solid var(--saffron);
  padding: 12px 14px;
  border-radius: 10px;
}

.site-footer {
  background: #0f1d20;
  color: #dce5e8;
  padding: 40px 24px;
  margin-top: 60px;
}

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

.footer-grid h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-grid button {
  background: var(--saffron);
  color: var(--white);
  border: none;
  border-radius: 18px;
  padding: 8px 14px;
  cursor: pointer;
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom a {
  color: #f5d6b4;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 12px;
  }

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