* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #b8a58a;
  color: #1b1b1b;
  overflow-x: hidden;
  line-height: 1.6;
  animation: pageFade 2.4s ease forwards;
}

/* NAVIGATION */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 58px;
  height: auto;
}

.logo-container h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #1b1b1b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* BUTTON */

.book-btn {
  background: #2f4638;
  color: #f4efe7;
  border: none;
  padding: 15px 30px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.book-btn:hover {
  background: #3e5a49;
}

/* PAGE HEADER */

.page-header {
  min-height: 70vh;
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background:
    linear-gradient(rgba(184,165,138,0.78), rgba(184,165,138,0.88)),
    url('services-bg.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-title {
  max-width: 780px;
  margin-top: 120px;
  animation: softRise 2s ease forwards;
}

.page-title h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 10vw, 130px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.page-title p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.8;
}

/* SERVICES GRID */

.services-page {
  padding: 100px 8%;
  background: #c2b59b;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.service-card {
  padding: 56px;
  border: 1px solid rgba(27, 27, 27, 0.16);
  min-height: 320px;
  animation: softRise 2s ease forwards;
}

.service-card span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 48px;
  opacity: 0.7;
}

.service-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 22px;
}

.service-card p {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.8;
}

/* BOOKING SECTION */

.booking-section {
  padding: 120px 8%;
  animation: softRise 2s ease forwards;
}

.booking-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 24px;
}

.booking-section p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 36px;
}

/* FOOTER */

.footer {
  padding: 40px 8%;
  border-top: 1px solid rgba(27,27,27,0.12);
  font-size: 14px;
  animation: softRise 2s ease forwards;
}

/* MOBILE */

@media (max-width: 768px) {

  .page-header {
    padding: 30px 24px;
    min-height: 70vh;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 1px;
  }

  .page-title {
    margin-top: 60px;
    padding-bottom: 40px;
  }

  .page-title h1 {
    font-size: 64px;
    line-height: 0.95;
  }

  .page-title p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 320px;
  }

  .services-page {
    grid-template-columns: 1fr;
    padding: 80px 24px;
  }

  .service-card {
    padding: 40px 28px;
    min-height: auto;
  }

  .service-card h2 {
    font-size: 36px;
  }

  .booking-section {
    padding: 80px 24px;
  }

  .booking-section h2 {
    font-size: 38px;
  }

  .footer {
    padding: 32px 24px;
  }

}

/* PAGE TRANSITIONS */

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}