/* =========================           RESET        ========================= */

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

body {
  font-family: "DM Sans", sans-serif;
  color: #202735;
  background: #fff;
}

:root {
  --muted: #666;
  --ink: #202735;
}

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

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

/* =========================           NAVBAR        ========================= */

.navbar {
  height: 85px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f3f2;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}

.logo span {
  display: block;
  font-size: 8px;
  letter-spacing: 2px;
  font-weight: 400;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar nav a {
  font-size: 11px;
  letter-spacing: 1px;
}

.nav-button {
  padding: 14px 24px;
  background: #c7357c;
  color: white;
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

/* =========================           HERO        ========================= */

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: 45% 55%;
  background: #f7f3f2;
}

.hero-content {
  padding: 100px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero p {
  max-width: 430px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.button {
  width: fit-content;
  padding: 15px 28px;
  background: #c7357c;
  color: white;
  font-size: 11px;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.button:hover {
  background: #a82965;
}

.hero-image {
  min-height: 520px;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

/* =========================           SERVICES        ========================= */

.services {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 60px;
}

.service-icon {
  font-size: 45px;
  margin-bottom: 20px;
}

.service h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 12px;
}

.service p {
  max-width: 230px;
  margin: auto;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: #777;
}

.service a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 1px solid #222;
  padding-bottom: 7px;
}

/* =========================           GALLERY        ========================= */

.gallery {
  padding: 80px 7%;
  background: #fcf9f8;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header small {
  font-size: 10px;
  letter-spacing: 2px;
  color: #777;
}

.gallery-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(35px, 4vw, 48px);
  line-height: 1.2;
  margin: 12px 0 10px;
}

.gallery-header p {
  max-width: 480px;
  margin: 0 auto;
  color: #666;
  line-height: 1.7;
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 39, 53, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay span {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1.5px;
  background: rgba(199, 53, 124, 0.85);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

/* =========================           ABOUT        ========================= */

.about {
  padding: 80px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.about-image img {
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}

.about-content small, .prices small, .booking small {
  font-size: 10px;
  letter-spacing: 2px;
  color: #777;
}

.about h2, .prices h2, .booking h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.2;
  margin: 20px 0;
}

.about p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about ul {
  padding-left: 20px;
}

.about li {
  margin-bottom: 15px;
  color: #666;
}

/* =========================           PRICES        ========================= */

.prices {
  padding: 100px 7%;
}

.prices-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.prices-heading img {
  width: 330px;
  border-radius: 8px;
}

.price-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px dotted #999;
}

.price-item strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 19px;
}

.price-item small {
  display: block;
  font-size: 11px;
  font-style: italic;
  color: #777;
}

.price-item span {
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.view-prices {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  font-size: 11px;
  letter-spacing: 1px;
  border-bottom: 1px solid #222;
  padding-bottom: 8px;
}

/* =========================           PROMOTION        ========================= */

.promotion {
  min-height: 300px;
  display: grid;
  grid-template-columns: 50% 50%;
  background: #e8dddd;
}

.promotion-content {
  padding: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promotion-content p {
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.promotion h2 {
  font-family: "Playfair Display", serif;
  font-size: 70px;
  margin-top: 15px;
  color: #c7357c;
}

.promotion-image img {
  height: 100%;
  object-fit: cover;
}

/* =========================
   POLICY
   ========================= */

.policy-section {
  padding: 105px 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.policy-intro .eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  color: #777;
}

.policy-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.2;
  margin: 20px 0;
}

.policy-intro p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.8;
}

.policy-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.policy-item {
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.policy-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.policy-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================           BOOKING        ========================= */

.booking {
  padding: 80px 7%;
  text-align: center;
}

.booking-header {
  margin-bottom: 40px;
}

.booking-header p {
  max-width: 450px;
  margin: 10px auto 0;
  color: #777;
  line-height: 1.7;
}

.cal-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cal-container iframe {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
  background: #fff;
}

/* =========================           FOOTER        ========================= */

footer {
  padding: 60px 7% 0;
  background: #202735;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #c7357c;
  font-weight: 600;
}

.footer-brand .logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.footer-brand .logo span {
  display: block;
  font-size: 8px;
  letter-spacing: 2px;
  font-weight: 400;
  color: #999;
}

.footer-brand p {
  font-size: 13px;
  color: #bbb;
  line-height: 1.6;
  max-width: 240px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 13px;
  color: #bbb;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links ul li a:hover {
  color: #c7357c;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #bbb;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background: #c7357c;
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #777;
  margin: 0;
}

/* ---------- Footer Responsive ---------- */

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-brand p {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .social-icons {
    justify-content: center;
  }
}

/* =========================           MOBILE        ========================= */

@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }
}

@media (max-width: 768px) {
  .navbar nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

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

@media (max-width: 768px) {
  .hero-content {
    padding: 70px 8%;
  }
}

@media (max-width: 768px) {
  .hero-image {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .gallery-item.tall, .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 768px) {
  .gallery-item.tall {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .prices-heading {
    display: block;
  }
}

@media (max-width: 768px) {
  .prices-heading img {
    width: 100%;
    max-width: 330px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .price-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .promotion {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .promotion-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .promotion-content {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .promotion h2 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .cal-container iframe {
    height: 600px;
  }
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .cal-container iframe {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .booking {
    padding: 60px 5%;
  }
}

@media (max-width: 768px) {
  .policy-section {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .policy-section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .policy-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================
   TESTIMONIALS
   ========================= */

.testimonials {
  padding: 100px 7%;
  background: #fcf9f8;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header small {
  font-size: 10px;
  letter-spacing: 2px;
  color: #777;
}

.testimonials-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(35px, 4vw, 48px);
  line-height: 1.2;
  margin: 12px 0 10px;
  color: #202735;
}

.testimonials-header p {
  max-width: 480px;
  margin: 0 auto;
  color: #666;
  line-height: 1.7;
  font-size: 14px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 35px 30px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  /*transform: translateY(-5px);*/
  /*box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);*/
}

.stars {
  color: #e6a817;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card blockquote {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 25px;
  flex: 1;
  font-style: italic;
  position: relative;
  padding-left: 18px;
  border-left: 3px solid #f0d5e3;
}

.client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f7e8ef;
}

.client .name {
  font-weight: 600;
  font-size: 14px;
  color: #202735;
}

.client .title {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {
  .testimonials {
    padding: 70px 6%;
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 28px 22px 24px;
  }
}

@media (max-width: 768px) {
  .testimonials-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 60px 5%;
  }
}

@media (max-width: 480px) {
  .testimonial-card blockquote {
    font-size: 13px;
    line-height: 1.7;
  }
}

