:root {
  --pink: #ef7091;
  --rose: #fff1f5;
  --dark: #3d2630;
  --muted: #806b73;
  --cream: #fffaf8;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  color: var(--dark);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1120px, 90%);
  margin: auto;
}
header {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
  padding: 22px 0;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font: 700 29px "Playfair Display";
  color: var(--pink);
  letter-spacing: 2px;
}
.logo span {
  display: block;
  color: var(--dark);
  font: 500 10px "DM Sans";
  letter-spacing: 3px;
  text-align: center;
}
.links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.links a:hover {
  color: var(--pink);
}
.button {
  display: inline-block;
  border: 0;
  border-radius: 30px;
  padding: 13px 23px;
  color: white;
  background: var(--pink);
  font-weight: 700;
  box-shadow: 0 8px 18px #ef709140;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  background: #e35c80;
}
.outline {
  background: transparent;
  color: var(--pink);
  border: 1px solid var(--pink);
  box-shadow: none;
  margin-left: 8px;
}
.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, #fff8f7 0%, #fff8f7cc 42%, transparent 72%),
    url("https://images.unsplash.com/photo-1519340241574-2cec6aef0c01?auto=format&fit=crop&w=1800&q=85")
      center/cover;
}
.hero-content {
  max-width: 550px;
  padding-top: 45px;
}
.eyebrow {
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1,
h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
}
h1 {
  font-size: clamp(44px, 6vw, 72px);
  margin-bottom: 20px;
}
h1 em {
  color: var(--pink);
  font-style: normal;
}
.hero p {
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 28px;
}
section {
  padding: 92px 0;
}
.heading {
  text-align: center;
  max-width: 610px;
  margin: 0 auto 43px;
}
h2 {
  font-size: 42px;
  margin-bottom: 13px;
}
.heading p,
.muted {
  color: var(--muted);
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.photo {
  border-radius: 25px;
  width: 60%;
  height: 420px;
  object-fit: cover;
}
.intro h2 {
  margin-bottom: 20px;
}
.intro p {
  color: var(--muted);
  margin-bottom: 18px;
}
.check {
  color: var(--muted);
  margin: 12px 0;
}
.check b {
  color: var(--pink);
  margin-right: 9px;
}
.pink-section {
  background: var(--rose);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: white;
  border-radius: 18px;
  padding: 28px 25px;
  box-shadow: 0 8px 25px #d98ca41c;
}
.icon {
  font-size: 31px;
  margin-bottom: 14px;
}
.card h3 {
  margin-bottom: 7px;
}
.card p {
  color: var(--muted);
  font-size: 14px;
}
.services .card {
  padding: 0 0 25px;
  overflow: hidden;
}
.services img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 18px;
}
.services h3,
.services p {
  padding: 0 22px;
}
.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 190px 190px;
  gap: 14px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.gallery img:first-child {
  grid-row: span 2;
}
.quote {
  text-align: center;
  max-width: 730px;
  margin: auto;
}
.quote blockquote {
  font: italic 25px "Playfair Display";
  margin: 15px 0 20px;
}
.stars {
  color: #f3af42;
  letter-spacing: 4px;
}
.schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}
.hours {
  background: white;
  padding: 28px;
  border-radius: 18px;
}
.row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f0e3e6;
  padding: 12px 0;
  color: var(--muted);
}
.row:last-child {
  border: 0;
}
.contact {
  background: var(--pink);
  color: white;
  border-radius: 24px;
  padding: 35px;
}
.contact p {
  margin: 12px 0 24px;
  opacity: 0.9;
}
footer {
  padding: 28px 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid #f2e2e6;
}
@media (max-width: 760px) {
  .links {
    display: none;
  }
  .hero {
    min-height: 620px;
    background:
      linear-gradient(90deg, #fff8f7e8, #fff8f7cc),
      url("https://images.unsplash.com/photo-1519340241574-2cec6aef0c01?auto=format&fit=crop&w=1000&q=80")
        center/cover;
  }
  section {
    padding: 65px 0;
  }
  .intro,
  .schedule {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .photo {
    width: 100%;
    height: 300px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  h2 {
    font-size: 35px;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gallery img:first-child {
    grid-row: span 1;
    grid-column: span 2;
  }
  .outline {
    margin-left: 3px;
  }

  .jadwal {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
}
