@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap');

:root {
  --ink: #12372a;
  --ink-soft: #426255;
  --cream: #f7f3e9;
  --paper: #fffdf7;
  --leaf: #1b5e45;
  --lime: #d6f06e;
  --coral: #e55e47;
  --line: rgba(18, 55, 42, 0.16);
  --shadow: 0 24px 70px rgba(18, 55, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 233, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--cream);
  background: var(--leaf);
  border-radius: 50% 50% 50% 12px;
  transform: rotate(-8deg);
}

.brand-mark i {
  transform: rotate(8deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--cream);
  background: var(--leaf);
  border: 1px solid var(--leaf);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover,
.button:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.button-light {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 34, 24, 0.88) 0%, rgba(7, 34, 24, 0.54) 48%, rgba(7, 34, 24, 0.12) 100%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  align-content: center;
  padding: 110px 0 150px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--paper);
  font-size: clamp(3.4rem, 7.4vw, 7.6rem);
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 34px;
  color: rgba(255, 253, 247, 0.82);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.route-label {
  position: absolute;
  right: 7vw;
  bottom: 72px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  transform: rotate(-3deg);
}

.search-shell {
  position: relative;
  z-index: 5;
  margin-top: -70px;
}

.search-panel {
  padding: 22px;
  background: var(--paper);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.search-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.search-tab {
  padding: 8px 14px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.search-tab.active {
  color: var(--ink);
  background: var(--lime);
}

.search-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.35fr 1fr 1fr auto;
  gap: 12px;
}

.field {
  display: grid;
  gap: 5px;
  padding: 9px 14px;
  background: #f5f1e7;
  border: 1px solid transparent;
  border-radius: 14px;
}

.field:focus-within {
  border-color: var(--leaf);
}

.field label {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 600;
}

.search-button {
  min-width: 58px;
  padding: 0 20px;
  color: var(--cream);
  background: var(--coral);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.search-button:hover {
  background: #c84b36;
  transform: translateY(-2px);
}

.form-note {
  display: none;
  margin: 14px 0 0;
  color: var(--leaf);
  font-weight: 700;
}

.form-note.visible {
  display: block;
}

.section {
  padding: 110px 0;
}

.section-tight {
  padding: 80px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.section-head h2,
.split-copy h2,
.page-intro h1 {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
}

.section-copy {
  max-width: 420px;
  margin-bottom: 5px;
  color: var(--ink-soft);
}

.destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.destination-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.destination-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.destination-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.destination-body {
  padding: 22px;
}

.destination-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.destination-body h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.destination-body p {
  color: var(--ink-soft);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--leaf);
  font-weight: 700;
}

.route-section {
  color: var(--paper);
  background: var(--ink);
}

.route-section .eyebrow {
  color: var(--lime);
}

.route-section h2,
.route-section .section-copy {
  color: var(--paper);
}

.route-section .section-copy {
  opacity: 0.72;
}

.route-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 60px;
}

.route-line::before {
  position: absolute;
  top: 18px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--lime) 0 10px, transparent 10px 18px);
  content: "";
}

.route-stop {
  position: relative;
  z-index: 2;
}

.stop-dot {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 7px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--lime);
}

.route-stop span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-stop h3 {
  margin: 8px 0 11px;
  font-size: 1.65rem;
}

.route-stop p {
  color: rgba(255, 253, 247, 0.68);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  padding: 28px;
  border-top: 1px solid var(--line);
}

.feature i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50% 50% 12px 50%;
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.feature p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.newsletter {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding: 52px;
  color: var(--paper);
  background: var(--coral);
  border-radius: 28px;
}

.newsletter h2 {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.newsletter p {
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.84);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 999px;
  outline: 0;
}

.site-footer {
  padding: 72px 0 28px;
  color: rgba(255, 253, 247, 0.72);
  background: #0c2c20;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1.1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand {
  color: var(--paper);
}

.footer-about {
  max-width: 390px;
  margin-top: 20px;
}

.footer-title {
  margin-bottom: 17px;
  color: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--lime);
}

.impressum {
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.page-intro {
  padding: 120px 0 80px;
}

.page-intro p {
  max-width: 680px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.split-image {
  overflow: hidden;
  border-radius: 28px;
}

.split-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.split-copy p {
  color: var(--ink-soft);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.stat {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Fraunces", serif;
  font-size: 2rem;
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-item {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.service-item i {
  margin-bottom: 24px;
  color: var(--coral);
  font-size: 1.4rem;
}

.service-item h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.service-item p {
  color: var(--ink-soft);
}

.catalog-section {
  padding: 30px 0 110px;
}

.catalog-block + .catalog-block {
  margin-top: 86px;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.catalog-toolbar h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.catalog-note {
  max-width: 420px;
  margin-bottom: 5px;
  color: var(--ink-soft);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-card {
  display: flex;
  overflow: hidden;
  min-height: 100%;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.offer-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.offer-image {
  position: relative;
}

.offer-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.offer-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-body {
  display: flex;
  height: 100%;
  padding: 22px;
  flex-direction: column;
}

.offer-kicker {
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-body h3 {
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.offer-body p {
  color: var(--ink-soft);
}

.offer-facts {
  display: grid;
  gap: 8px;
  margin: 4px 0 22px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.offer-facts span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.offer-facts i {
  width: 17px;
  color: var(--leaf);
}

.offer-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price {
  display: grid;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.price strong {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.details-button {
  padding: 9px 14px;
  color: var(--leaf);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.details-button:hover {
  color: var(--paper);
  background: var(--leaf);
}

.flight-card {
  padding: 22px;
}

.flight-card .offer-body {
  padding: 0;
}

.flight-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 20px 0;
}

.airport {
  display: grid;
}

.airport:last-child {
  text-align: right;
}

.airport strong {
  font-family: "Fraunces", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.airport span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.flight-path {
  display: flex;
  min-width: 80px;
  align-items: center;
  gap: 8px;
  color: var(--coral);
}

.flight-path::before,
.flight-path::after {
  width: 100%;
  height: 1px;
  background: var(--line);
  content: "";
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  padding: 24px;
  align-items: center;
  justify-content: center;
  background: rgba(7, 34, 24, 0.72);
  backdrop-filter: blur(8px);
}

.modal.open {
  display: flex;
}

.modal-dialog {
  position: relative;
  overflow: auto;
  width: min(650px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  padding: 34px;
  background: var(--paper);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.modal-dialog h2 {
  max-width: 520px;
  margin-bottom: 14px;
  padding-right: 42px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.modal-lead {
  color: var(--ink-soft);
}

.modal-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.modal-detail {
  padding: 15px;
  background: var(--cream);
  border-radius: 14px;
}

.modal-detail span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-detail strong {
  display: block;
  margin-top: 4px;
}

.modal-disclaimer {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.article-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.article-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.article-card-body {
  padding: 22px;
}

.article-card-body h2,
.article-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.article-card-body p {
  color: var(--ink-soft);
}

.prose {
  max-width: 840px;
}

.prose h2 {
  margin: 48px 0 14px;
  font-size: 2rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-card,
.contact-form {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.contact-details {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail i {
  margin-top: 4px;
  color: var(--coral);
}

.contact-detail strong {
  display: block;
}

.contact-detail span,
.contact-detail a {
  color: var(--ink-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid .field {
  background: #f7f3e9;
}

.form-grid .field-wide {
  grid-column: 1 / -1;
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    min-height: calc(100vh - 78px);
    padding: 40px 20px;
    align-items: stretch;
    flex-direction: column;
    color: var(--ink);
    background: var(--cream);
    font-size: 1.2rem;
  }

  .site-nav.open {
    display: flex;
  }

  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-button {
    min-height: 54px;
  }

  .destinations,
  .features,
  .offer-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 28px;
  }

  .route-line::before {
    display: none;
  }

  .footer-grid,
  .split,
  .newsletter,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero,
  .hero-content {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 90px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .route-label {
    right: 18px;
    bottom: 32px;
  }

  .search-shell {
    margin-top: -36px;
  }

  .search-panel {
    padding: 15px;
  }

  .search-grid,
  .destinations,
  .features,
  .offer-grid,
  .article-grid,
  .route-line,
  .service-list,
  .form-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 30px;
  }

  .section-copy {
    margin-top: 18px;
  }

  .destination-card img {
    height: 240px;
  }

  .newsletter {
    gap: 28px;
    padding: 30px 22px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-intro {
    padding: 86px 0 50px;
  }

  .split-image img {
    height: 340px;
  }

  .contact-card,
  .contact-form {
    padding: 23px;
  }

  .catalog-toolbar {
    display: block;
  }

  .catalog-note {
    margin-top: 16px;
  }

  .modal {
    padding: 10px;
  }

  .modal-dialog {
    max-height: calc(100vh - 20px);
    padding: 26px 20px;
    border-radius: 20px;
  }

  .modal-details {
    grid-template-columns: 1fr;
  }
}
