:root {
  --deep-teal: #0f3f49;
  --mid-teal: #145661;
  --sand: #f5f0e9;
  --coral: #f05a4f;
  --sun: #fdba5e;
  --ink: #0a1c20;
  --slate: #5a6b73;
  --line: rgba(15, 63, 73, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

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

a {
  color: var(--coral);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 5vw 4rem;
}

.section-heading {
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--coral);
  margin: 0 0 0.4rem;
}

h1, h2, h3, h4 {
  color: var(--deep-teal);
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5vw;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-block img {
  width: 140px;
}

.tag {
  margin: 0;
  font-size: 0.85rem;
  color: var(--slate);
}

.contact-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-weight: 500;
}

.contact-inline span {
  color: var(--line);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 12px 30px rgba(240, 90, 79, 0.3);
}

.btn.primary:hover {
  filter: brightness(1.05);
}

.btn.ghost {
  background: transparent;
  color: var(--deep-teal);
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 3rem 0 1rem;
}

.hero__text ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.hero__text li::before {
  content: '\2022';
  color: var(--coral);
  margin-right: 0.5rem;
}

.hero__card {
  background: var(--deep-teal);
  color: white;
  border-radius: 28px;
  padding: 2rem;
  align-self: start;
  box-shadow: 0 25px 40px rgba(15, 63, 73, 0.25);
}

.hero__card ul {
  padding-left: 1.2rem;
}

.hero__label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--sun);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.2rem 0;
}

.hero__highlights {
  margin: 1.2rem 0 0;
}

.hero__card .small {
  font-size: 0.85rem;
  opacity: 0.8;
}

.destination-grid,
.hotel-grid,
.service-grid,
.package-grid,
.testimonial-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.destination-grid article,
.hotel-grid article,
.service-grid article,
.package-grid article,
.testimonial-grid article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem;
  background: white;
  box-shadow: 0 10px 25px rgba(10, 28, 32, 0.05);
}

.hotel-grid article:nth-child(1) {
  background: #fff9f6;
}

.hotel-grid article:nth-child(2) {
  background: #f6fbfb;
}

.hotel-grid article:nth-child(3) {
  background: #f7f4ff;
}

.hotel-grid ul {
  padding-left: 1.1rem;
  color: var(--slate);
}

.services {
  background: var(--sand);
  padding: 3rem 5vw;
  border-radius: 36px;
}

.process {
  background: #f9fbfb;
  padding: 3rem 5vw;
  border-radius: 36px;
}

.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
  padding: 0;
  margin: 0;
}

.process-steps li {
  background: white;
  border-radius: 22px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: 0 12px 20px rgba(10, 28, 32, 0.05);
}

.packages article {
  border-style: dashed;
}

.testimonial-grid article {
  border: none;
  background: var(--deep-teal);
  color: white;
  box-shadow: 0 20px 35px rgba(15, 63, 73, 0.3);
}

.booking {
  padding: 3rem 0;
}

.booking__card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(15, 63, 73, 0.95), rgba(20, 86, 97, 0.9));
  color: white;
}

.booking__card a {
  color: var(--sun);
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

input,
select,
textarea {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  font-family: inherit;
}

textarea {
  border-radius: 22px;
}

.faq-grid article {
  min-height: 180px;
}

.site-footer {
  background: var(--ink);
  color: #dbe4e6;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 3rem 5vw;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 640px) {
  .contact-inline {
    justify-content: flex-start;
  }
  .site-nav {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }
  main {
    padding: 0 1.25rem 3rem;
  }
}
