:root {
  --rose-primary: #e89acb;
  --rose-hover: #d97bb8;
  --rose-hover-dark: #d97bb8;
  --rose-soft: #fbf7f5;
  --rose-light: #ffffff;
  --brown: #b07a5a;
  --dark: #2b1e1a;
  --heading: #1f1b1b;
  --white: #ffffff;
  --border: #eaeaea;
  --shadow: 0 18px 36px rgba(43, 30, 26, 0.12);
  --radius: 18px;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: var(--rose-light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

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

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 500;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brown);
  white-space: nowrap;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.brand-name {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  color: inherit;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  color: var(--dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--rose-primary);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(232, 154, 203, 0.25);
}

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

.button--outline {
  background: transparent;
  border: 1px solid var(--rose-primary);
  color: var(--dark);
  box-shadow: none;
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dark);
  box-shadow: none;
}

.button--outline:hover,
.button--ghost:hover {
  border-color: var(--rose-hover);
  color: var(--dark);
  background: var(--rose-soft);
}

.hero {
  padding: 110px 0 80px;
  background: linear-gradient(135deg, rgba(251, 247, 245, 0.95), rgba(255, 255, 255, 0.8)),
    url("hero-bg.jpg") center/cover no-repeat;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

h1,
h2,
h3,
h4 {
  color: var(--heading);
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--brown);
  font-weight: 600;
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  margin: 20px 0 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rose-primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(232, 154, 203, 0.25);
  z-index: 20;
}

.whatsapp-float:hover {
  background: var(--rose-hover);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--rose-soft);
}

.section-header {
  margin-bottom: 40px;
  max-width: 680px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-actions {
  margin-top: 32px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.about-list {
  display: grid;
  gap: 20px;
}

.services-grid,
.tips-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card,
.tip-card,
.testimonial-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.portfolio-item {
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.portfolio-item figcaption {
  margin-top: 12px;
  font-weight: 600;
}

.calendar {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.calendar__month {
  font-weight: 600;
  text-transform: capitalize;
}

.calendar__nav {
  background: var(--rose-soft);
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 1.1rem;
}

.calendar__weekdays,
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar__weekdays span {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--brown);
  text-align: center;
}

.calendar__grid {
  margin-top: 10px;
}

.calendar__day {
  padding: 12px 0;
  text-align: center;
  border-radius: 12px;
  background: var(--rose-soft);
  font-weight: 500;
  cursor: default;
}

.calendar__day.is-available {
  background: rgba(232, 154, 203, 0.18);
  border: 1px solid var(--rose-primary);
  color: var(--dark);
  cursor: pointer;
}

.calendar__day.is-past {
  opacity: 0.4;
}

.calendar__day.is-empty {
  background: transparent;
  cursor: default;
}

.calendar__note {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--dark);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: var(--white);
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 48px 0 24px;
}

.site-footer h3 {
  color: var(--white);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-note {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-credit {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 6px;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Admin */
.admin-body {
  background: var(--rose-soft);
}

.admin-main {
  padding: 60px 0;
  display: grid;
  gap: 24px;
}

.card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 500;
}

.form input,
.form select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.form-message {
  min-height: 20px;
  font-size: 0.9rem;
  color: var(--dark);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.admin-list {
  margin-top: 32px;
}

.dates-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.dates-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--rose-soft);
  cursor: pointer;
}

.dates-item span {
  font-weight: 600;
}

.dates-item small {
  text-transform: uppercase;
  color: var(--brown);
}

.hidden {
  display: none;
}

.admin-label {
  font-weight: 500;
  color: var(--brown);
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 16px 16px;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav .whatsapp-link {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 80px;
  }

  .nav {
    flex-direction: row;
    align-items: center;
  }

  .logo img {
    height: 34px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }

  .site-footer {
    padding-bottom: 100px;
  }
}
