:root {
  --ink: #1e2d2c;
  --muted: #4d5e5c;
  --cream: #f5efe9;
  --sand: #f2dfe0;
  --rose: #e8b5b8;
  --rose-dark: #d76b7a;
  --pink: #e9b1b3;
  --pink-deep: #d58997;
  --teal: #4ab0a7;
  --teal-deep: #0d756d;
  --green: #124e4d;
  --white: #ffffff;
  --line: rgba(30, 45, 44, 0.12);
  --shadow: 0 22px 60px rgba(87, 70, 72, 0.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.section { padding: 48px 0 96px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 239, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pink-deep);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: "Playfair Display", serif; font-size: 18px; line-height: 1.1; }
.brand small { font-size: 11px; color: var(--muted); margin-top: 3px; }

.nav-links { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--rose-dark); }
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--pink-deep);
  color: white;
}
.nav-cta:hover { color: white !important; background: var(--teal-deep); }
.menu-toggle { display: none; border: 0; background: none; font-size: 26px; }

.hero { padding-top: 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--pink-deep);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}
.hero h1, h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.02em;
}
.hero h1 { font-size: clamp(48px, 7vw, 82px); max-width: 760px; }
.hero h1 em { color: var(--pink-deep); font-weight: 600; }
h2 { font-size: clamp(36px, 4vw, 56px); }
h3 { margin: 0; font-size: 20px; }
.hero-text { font-size: 19px; max-width: 650px; color: var(--muted); margin: 28px 0; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: .2s ease;
}
.btn-primary { background: var(--pink-deep); color: white; }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn-secondary { border-color: var(--line); background: transparent; }
.btn-secondary:hover { background: white; }
.full { width: 100%; }

.hero-points { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; color: var(--muted); font-size: 14px; }
.hero-visual { position: relative; min-height: 590px; }
.hero-card-main {
  height: 555px;
  border-radius: 180px 180px 30px 30px;
  padding: 18px;
  background: var(--sand);
  box-shadow: var(--shadow);
}
.image-placeholder {
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.55), transparent 30%),
    linear-gradient(145deg, #d8b6a7, #8f645a);
  color: white;
  text-align: center;
  padding: 20px;
}
.image-placeholder.large {
  border-radius: 160px 160px 20px 20px;
}
.image-placeholder span { font-weight: 700; }
.image-placeholder small { opacity: .85; }
.floating-card {
  position: absolute;
  right: -18px;
  bottom: 35px;
  width: 250px;
  padding: 20px;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
}
.floating-card strong, .floating-card span { display: block; }
.floating-card span { color: var(--muted); font-size: 13px; margin-top: 5px; }

.intro-strip { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stats div { padding: 14px 24px; border-right: 1px solid var(--line); }
.stats div:last-child { border: 0; }
.stats strong, .stats span { display: block; }
.stats strong { font-family: "Playfair Display", serif; font-size: 24px; }
.stats span { color: var(--muted); font-size: 13px; margin-top: 4px; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.about-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
.about-photo {
  width: min(100%, 760px);
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
#about .eyebrow,
#about h2 {
  margin-top: 0;
}
#about .about-layout > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.body-copy { font-size: 18px; color: var(--muted); }
.body-copy p:first-child { margin-top: 0; }

.soft-bg { background: #f5ece3; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.section-heading > p { max-width: 450px; color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(80, 50, 40, .08); }
.service-number { color: var(--pink-deep); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.service-card h3 { font-family: "Playfair Display", serif; font-size: 26px; margin-top: 22px; }
.service-card p { color: var(--muted); }
.text-link {
  border: 0;
  padding: 0;
  background: none;
  color: var(--pink-deep);
  font-weight: 700;
}

.filter-row { display: flex; gap: 8px; flex-wrap: wrap; }
.filter {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 9px 15px;
}
.filter.active { background: var(--pink-deep); color: white; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-item { margin: 0; position: relative; overflow: hidden; border-radius: 24px; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item .image-placeholder { min-height: 100%; border-radius: 24px; transition: .3s ease; }
.gallery-item:nth-child(2) .image-placeholder,
.gallery-item:nth-child(5) .image-placeholder { background: linear-gradient(145deg, #c0a692, #66504a); }
.gallery-item:nth-child(3) .image-placeholder,
.gallery-item:nth-child(6) .image-placeholder { background: linear-gradient(145deg, #c89686, #704b42); }
.gallery-item:nth-child(4) .image-placeholder { background: linear-gradient(145deg, #a89279, #4f493c); }
.gallery-item:hover .image-placeholder { transform: scale(1.025); }
.gallery-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 13px;
}
.gallery-item.hidden { display: none; }

.dark-section { background: linear-gradient(135deg, #1f3f3b 0%, #123f3d 100%); color: var(--cream); }
.eyebrow.light { color: #f3c9ce; }
.experience-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.experience-grid > div:first-child > p:last-child { color: #c8bdb9; max-width: 520px; margin-top: 25px; }
.timeline { border-top: 1px solid rgba(255,255,255,.2); }
.timeline article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.timeline article > span { color: #f4c3ca; font-size: 12px; font-weight: 700; }
.timeline h3 { font-family: "Playfair Display", serif; font-size: 26px; }
.timeline p { color: #c8bdb9; margin-bottom: 0; }

.care-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.care-grid article {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: white;
}
.care-icon {
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 14px; background: var(--sand); color: var(--rose-dark);
  font-weight: 700; margin-bottom: 20px;
}
.care-grid p { color: var(--muted); font-size: 14px; }
.care-grid strong { color: var(--ink); }

.testimonial-section { background: var(--sand); }
.testimonial-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.testimonial-card {
  border-radius: 28px;
  background: white;
  padding: 34px;
  box-shadow: var(--shadow);
}
.stars { letter-spacing: 5px; color: var(--pink-deep); }
blockquote {
  margin: 18px 0;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  line-height: 1.4;
}
.testimonial-card p { color: var(--muted); }

.review-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(50, 30, 20, 0.06);
}

.review-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.review-card-body {
  padding: 20px 18px 22px;
}

.review-card-body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.booking-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.booking-grid > div > p { color: var(--muted); }
.contact-details { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); }
.contact-details p { margin: 8px 0; font-size: 14px; }
.booking-form {
  background: white;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 15px 50px rgba(50,30,20,.07);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 16px; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fffdf9;
  color: var(--ink);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--rose-dark); box-shadow: 0 0 0 3px rgba(142,79,69,.08); }
textarea { resize: vertical; }
.form-note, .form-status { font-size: 12px; color: var(--muted); text-align: center; }
.form-status { color: var(--green); font-weight: 700; min-height: 18px; }

.site-footer { background: linear-gradient(135deg, #e9b1b3 0%, #d98a99 100%); color: #fff9f8; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; }
.footer-grid p { max-width: 460px; color: rgba(255,255,255,0.88); }
.footer-grid a:not(.brand) { color: rgba(255,255,255,0.93); font-size: 14px; }
.footer-brand .brand-mark { background: rgba(255,255,255,0.22); color: var(--white); }
.footer-brand small { color: rgba(255,255,255,0.82); }
.copyright {
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.22);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
}

dialog {
  width: min(540px, calc(100% - 32px));
  border: 0;
  border-radius: 24px;
  padding: 34px;
  color: var(--ink);
  box-shadow: var(--shadow);
}
dialog::backdrop { background: rgba(20, 14, 12, .55); backdrop-filter: blur(4px); }
.dialog-close {
  position: absolute; right: 18px; top: 14px;
  border: 0; background: none; font-size: 30px; color: var(--muted);
}
dialog p:not(.eyebrow) { color: var(--muted); }

@media (max-width: 980px) {
  .hero-grid, .split, .experience-grid, .testimonial-wrap, .booking-grid { grid-template-columns: 1fr; gap: 50px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .care-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 500px; }
  .hero-card-main { height: 470px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats div:nth-child(2) { border-right: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 20px; right: 20px; top: 70px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--cream);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 7px 0; }
  .nav-cta { text-align: center; padding: 10px !important; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: 50px; }
  .hero-visual { min-height: 420px; }
  .hero-card-main { height: 400px; border-radius: 120px 120px 24px 24px; }
  .image-placeholder.large { border-radius: 110px 110px 18px 18px; }
  .floating-card { right: 10px; bottom: 0; }
  .service-grid, .care-grid, .gallery-grid, .footer-grid, .review-card-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-grid { grid-auto-rows: 330px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .copyright { flex-direction: column; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero h1 { font-size: 42px; }
  .stats { grid-template-columns: 1fr; }
  .stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats div:last-child { border-bottom: 0; }
  .hero-card-main { height: 350px; }
  .hero-visual { min-height: 390px; }
  .floating-card { width: 220px; }
}
