:root {
  --bg: #f9f7f2;
  --primary: #e29578;
  --secondary: #83c5be;
  --text: #4a4a4a;
  --muted: #6b6b6b;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

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

body {
  font-family: "Work Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:not(.cta):not(.whatsapp):hover {
  color: var(--primary);
}

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

header,
main,
section,
footer {
  width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(249, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background-color: var(--secondary);
  background-image: url('muriel.jpg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.brand-title {
  font-family: "Cormorant Garamond", "Work Sans", serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.brand-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  margin-left: auto;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--card);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.menu {
  list-style: none;
  display: none;
  gap: 1rem;
  margin-left: 1.5rem;
}

.menu.open {
  display: grid;
  gap: 0.6rem;
  position: absolute;
  top: 64px;
  right: 1rem;
  background: var(--card);
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.menu a {
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.menu a:hover {
  background: rgba(226, 149, 120, 0.12);
}

.menu a:focus-visible {
  outline: none;
  background: rgba(226, 149, 120, 0.18);
  box-shadow: 0 0 0 2px #fff, 0 0 0 6px rgba(131, 197, 190, 0.6);
}

/* Footer links with same visual style as menu links */
.footer-right a {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-weight: 500;
}

.footer-right a:hover {
  background: rgba(226, 149, 120, 0.12);
}

.footer-right a:focus-visible {
  outline: none;
  background: rgba(226, 149, 120, 0.18);
  box-shadow: 0 0 0 2px #fff, 0 0 0 6px rgba(131, 197, 190, 0.6);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

@media (hover: hover) {
  .cta:hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 16px 30px rgba(226, 149, 120, 0.35);
    filter: brightness(0.95);
  }
}

.cta:focus-visible {
  outline: none;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 0 0 2px #fff, 0 0 0 6px rgba(131, 197, 190, 0.6), 0 16px 30px rgba(226, 149, 120, 0.35);
}

.ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(226, 149, 120, 0.35);
  box-shadow: none;
}

.link {
  font-weight: 600;
  color: var(--muted);
}

.hero {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 1.25rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 100%;
  display: grid;
  gap: 1rem;
}

.hero h1 {
  font-family: "Cormorant Garamond", "Work Sans", serif;
  font-size: 2.2rem;
  line-height: 1.15;
}

.hero .lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 100%;
}

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

.pill {
  align-self: start;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(131, 197, 190, 0.15);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.25;
  z-index: 0;
}

.circle-lg {
  width: 320px;
  height: 320px;
  background: var(--secondary);
  top: 10%;
  right: -40%;
}

.circle-sm {
  width: 180px;
  height: 180px;
  background: var(--primary);
  bottom: -20%;
  right: 5%;
}

.hero .card {
  position: absolute;
  right: 0;
  bottom: 12%;
  background: var(--card);
  padding: 1.25rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 260px;
  z-index: 2;
}

.hero-photo {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 1;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease, filter 400ms ease;
}

@media (hover: hover) {
  .hero-photo:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
  }
  .hero-photo:hover img {
    transform: scale(1.035);
    filter: saturate(1.02) contrast(1.02);
  }
}

.card-label {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  background: rgba(131, 197, 190, 0.18);
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.section {
  padding: 3.5rem 1.25rem;
}
.gallery-section .section-lead {
  max-width: 680px;
}

.gallery {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f1efe9;
}

.slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 300ms ease;
}

.slide.active {
  opacity: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: opacity;
}

.slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 70%);
  color: #fff;
}

.slide-caption h3 {
  font-family: "Cormorant Garamond", "Work Sans", serif;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.slide-caption p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.gallery-controls {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.gallery-controls button {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

@media (hover: hover) {
  .gallery-controls button:hover {
    background: rgba(0, 0, 0, 0.35);
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
  }
}

.gallery-controls button:active {
  transform: translateY(0) scale(0.96);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.gallery-controls button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.75), 0 0 0 6px rgba(131, 197, 190, 0.6);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px) scale(1.06);
}
.gallery-controls button svg {
  width: 20px;
  height: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gallery-hint {
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .slides { aspect-ratio: 21 / 9; }
  .slide-caption h3 { font-size: 1.35rem; }
}

@media (min-width: 1100px) {
  .slides { aspect-ratio: 2 / 1; }
  .slide-caption h3 { font-size: 1.45rem; }
}

/* Mobile-friendly hit targets for gallery controls */
@media (max-width: 600px) {
  .gallery-controls {
    right: 0.6rem;
    bottom: 0.6rem;
    gap: 0.6rem;
  }
  .gallery-controls button {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    min-width: 44px;
    min-height: 44px;
    border-width: 1.5px;
  }
}

@media (max-width: 380px) {
  .gallery-controls button {
    padding: 0.75rem 1.1rem;
    font-size: 1rem;
  }
}

.section-header {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.section h2 {
  font-family: "Cormorant Garamond", "Work Sans", serif;
  font-size: 1.7rem;
}

.section-lead {
  color: var(--muted);
  max-width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 700;
}

.about-grid {
  display: grid;
  gap: 1rem;
}

.about-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.6rem;
}

.about-card p {
  line-height: 1.7;
}

.services .cards {
  display: grid;
  gap: 1rem;
}

.service-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.5rem;
}

.service-card h3 {
  font-size: 1.1rem;
}

.service-card p {
  line-height: 1.7;
}

.testimonials .section-lead {
  max-width: 740px;
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.testimonial-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.8rem;
}

.testimonial-card .quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.testimonial-card .signature {
  color: var(--muted);
  font-weight: 700;
}

.note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-weight: 600;
}

.benefit-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  padding: 0;
  max-width: 100%;
}

.benefit-list li {
  padding: 0.9rem 1rem;
  background: rgba(131, 197, 190, 0.12);
  border-radius: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 100%;
}

.faq-item {
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  transition: background 120ms ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::before {
  content: "▼";
  display: inline-block;
  margin-right: 0.75rem;
  font-size: 0.75rem;
  transition: transform 200ms ease;
  color: var(--primary);
}

.faq-item[open] summary::before {
  transform: rotate(-180deg);
}

.faq-item summary:hover {
  background: rgba(131, 197, 190, 0.08);
}

.faq-item[open] summary {
  background: rgba(131, 197, 190, 0.12);
}

.faq-item p {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.contact-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  font: inherit;
  color: var(--text);
}

.contact-form button {
  margin-top: 0.5rem;
}

.mini {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.25rem 2.5rem;
  background: #efeae0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-right {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.whatsapp {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--secondary);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
  z-index: 9999;
}

.whatsapp svg {
  flex-shrink: 0;
}

.whatsapp:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 20px 35px rgba(131, 197, 190, 0.4);
  background: #6ab3aa;
}

@media (hover: hover) {
  .whatsapp:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 20px 35px rgba(131, 197, 190, 0.4);
    background: #6ab3aa;
  }
}

.whatsapp:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 6px rgba(131, 197, 190, 0.6);
  transform: translateY(-2px) scale(1.06);
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 4.5rem 3.25rem 3rem;
  }

  .hero-content {
    max-width: 620px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero .lead {
    font-size: 1.15rem;
    max-width: 540px;
  }

  .section {
    padding: 4rem 3.25rem;
  }

  .section-lead {
    font-size: 1.1rem;
    max-width: 680px;
  }

  .menu {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .about-grid,
  .services .cards,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .about-card,
  .service-card {
    padding: 2rem;
  }

  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3.25rem;
  }
}

@media (min-width: 1100px) {
  .hero {
    padding: 5.5rem 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero .lead {
    font-size: 1.2rem;
    max-width: 620px;
  }

  .section {
    padding: 5rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .section-lead {
    font-size: 1.15rem;
    max-width: 780px;
  }

  .about-grid,
  .services .cards,
  .testimonial-grid,
  .contact-grid {
    gap: 2rem;
  }

  .about-card,
  .service-card {
    padding: 2.5rem;
  }

  .benefit-list {
    gap: 1.25rem;
  }

  .benefit-list li {
    padding: 1.1rem 1.4rem;
  }

  .footer {
    padding: 3rem 6rem;
  }
}
