:root {
  --ink: #17211f;
  --muted: #5c6965;
  --line: #d9e1dd;
  --surface: #ffffff;
  --soft: #f4f7f5;
  --teal: #006a61;
  --teal-dark: #03443f;
  --coral: #d55248;
  --leaf: #3d7b4a;
  --gold: #b9811f;
  --shadow: 0 18px 46px rgba(20, 33, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 156px;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  width: 46px;
  height: 38px;
  place-items: center;
  color: #ffffff;
  background: var(--teal);
  border-radius: 8px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a,
.header-link {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  color: var(--teal);
}

.header-link {
  color: var(--teal-dark);
  font-weight: 700;
}

.booking-stage {
  position: relative;
  isolation: isolate;
  padding: 54px 32px 46px;
  background:
    linear-gradient(90deg, rgba(12, 28, 25, 0.9), rgba(12, 28, 25, 0.58), rgba(12, 28, 25, 0.28)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: #ffffff;
}

.stage-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: end;
}

.stage-copy {
  max-width: 620px;
  padding: 24px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.booking-stage .eyebrow {
  color: #ffbbb5;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  max-width: 760px;
  font-size: 3.25rem;
}

h2 {
  font-size: 2.15rem;
}

h3 {
  font-size: 1.12rem;
}

.stage-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.field label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 106, 97, 0.16);
}

.booking-form .field:first-child {
  grid-column: span 2;
}

.booking-form .field {
  grid-column: span 2;
}

.booking-form .primary-button {
  grid-column: span 2;
  align-self: end;
}

.primary-button,
.secondary-button,
.filter-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.primary-button {
  padding: 12px 18px;
  color: #ffffff;
  background: var(--coral);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: #bd443b;
  transform: translateY(-1px);
}

.secondary-button {
  padding: 12px 18px;
  color: var(--teal-dark);
  background: #ffffff;
  border-color: var(--line);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
}

.results-section,
.cities-section,
.workflow-section,
.contacts-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 24px;
}

.section-head p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--teal-dark);
  background: #ffffff;
  border-color: var(--line);
}

.filter-button.is-active {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
}

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

.hotel-card,
.city-card,
.workflow-grid article {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hotel-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.hotel-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hotel-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.hotel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hotel-meta span {
  padding: 5px 8px;
  background: var(--soft);
  border-radius: 8px;
}

.hotel-card p {
  margin: 0;
  color: var(--muted);
}

.hotel-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hotel-features li {
  padding: 6px 9px;
  color: var(--teal-dark);
  background: #e8f4ef;
  border-radius: 8px;
  font-size: 0.9rem;
}

.hotel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price strong {
  font-size: 1.35rem;
}

.price span {
  color: var(--muted);
  font-size: 0.88rem;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  color: var(--muted);
  background: #ffffff;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

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

.city-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.city-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.city-card div {
  padding: 18px;
}

.city-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.company-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 32px;
  width: min(1160px, calc(100% - 40px));
  margin: 72px auto 0;
  padding: 42px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.company-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.company-panel {
  display: grid;
  gap: 12px;
  align-content: center;
}

.company-panel div {
  padding: 18px;
  background: var(--soft);
  border-left: 4px solid var(--leaf);
  border-radius: 8px;
}

.company-panel strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.85rem;
  line-height: 1;
}

.company-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

.workflow-grid article {
  padding: 22px;
}

.workflow-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--gold);
  border-radius: 8px;
  font-weight: 700;
}

.workflow-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contacts-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 72px;
  padding: 44px;
  color: #ffffff;
  background: var(--teal-dark);
  border-radius: 8px;
}

.contacts-section .eyebrow {
  color: #ffbbb5;
}

.contacts-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 18, 0.68);
}

.modal-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 26px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.booking-summary {
  margin: 18px 0;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.booking-summary p {
  margin: 6px 0;
  color: var(--muted);
}

.request-form {
  display: grid;
  gap: 12px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .stage-content,
  .company-section {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .results-grid,
  .city-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 18px;
  }

  .header-link {
    width: 100%;
  }

  .booking-stage {
    padding: 36px 20px;
  }

  .stage-copy {
    padding: 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .booking-form .field,
  .booking-form .field:first-child,
  .booking-form .primary-button {
    grid-column: auto;
  }

  .results-section,
  .cities-section,
  .workflow-section,
  .contacts-section,
  .company-section {
    width: min(100% - 28px, 1160px);
  }

  .results-grid,
  .city-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .hotel-bottom,
  .contacts-section,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hotel-bottom .primary-button,
  .contact-actions,
  .contact-actions a {
    width: 100%;
  }

  .company-section,
  .contacts-section {
    padding: 24px;
  }
}
