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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: #1f171a;
  background: #fff8fb;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem 6%;
  background: rgba(255, 248, 251, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #f1dce5;
}

.logo {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo span {
  color: #d47b9d;
  font-size: 1.8rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 700;
}

.nav-cta {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: #1f171a;
  color: #fff;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 6%;
  background:
    radial-gradient(circle at top right, rgba(212, 123, 157, 0.24), transparent 35%),
    linear-gradient(135deg, #fff8fb 0%, #ffffff 100%);
}

.eyebrow {
  color: #c3668c;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}

h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.98;
  margin-bottom: 1.2rem;
}

h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 680px;
  font-size: 1.12rem;
  color: #5e5156;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: #d47b9d;
  color: #fff;
  box-shadow: 0 14px 35px rgba(212, 123, 157, 0.32);
}

.secondary {
  border: 2px solid #1f171a;
}

.hero-card {
  border: 12px solid #fff;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(31, 23, 26, 0.18);
  overflow: hidden;
  transform: rotate(1.5deg);
  background: #fff;
}

.hero-card img {
  width: 100%;
  height: min(680px, 72vh);
  object-fit: cover;
  display: block;
}

.section {
  padding: 5.5rem 6%;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.service-grid article {
  background: #fff;
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid #f1dce5;
  box-shadow: 0 14px 40px rgba(31, 23, 26, 0.06);
}

.service-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.service-grid p {
  color: #75676d;
  margin-bottom: 0.8rem;
}

.service-grid strong {
  color: #c3668c;
  font-size: 1.2rem;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  background: #1f171a;
  color: #fff;
}

.about p {
  color: #f4dce6;
  margin-bottom: 1rem;
}

.quote-card {
  background: #fff8fb;
  color: #1f171a;
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.quote-card h3 {
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.quote-card p {
  color: #c3668c;
  font-weight: 900;
}

.policies {
  background: #fff;
}

.policy-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.policy-list p {
  background: #fff8fb;
  border-left: 5px solid #d47b9d;
  padding: 1rem 1.15rem;
  border-radius: 16px;
}

.booking {
  text-align: center;
  background:
    linear-gradient(rgba(255, 248, 251, 0.9), rgba(255, 248, 251, 0.9)),
    radial-gradient(circle, rgba(212, 123, 157, 0.35), transparent 45%);
}

.booking p {
  margin-bottom: 1.2rem;
  color: #5e5156;
}

footer {
  padding: 2rem 6%;
  text-align: center;
  background: #1f171a;
  color: #fff;
}

footer a {
  color: #f4b4cb;
}

@media (max-width: 980px) {
  .hero,
  .about {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    transform: none;
  }
}

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

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 6%;
  }
}
