:root {
  --ink: #2d2527;
  --muted: #766a6e;
  --paper: #fffdfb;
  --cream: #fbf4ee;
  --blush: #f7dce3;
  --rose: #d98799;
  --sage: #b9cbbf;
  --sky: #dcecf2;
  --nude: #ead7c7;
  --line: rgba(45, 37, 39, 0.12);
  --shadow: 0 24px 70px rgba(87, 61, 66, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  margin: 8px;
  background: var(--ink);
  color: white;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 253, 251, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(22px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--sage));
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(217, 135, 153, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: -2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #4c4144;
  font-size: 0.94rem;
}

.menu a:hover {
  background: rgba(247, 220, 227, 0.55);
}

.menu .nav-cta {
  background: var(--ink);
  color: white;
  margin-left: 6px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 72px;
}

.hero picture,
.hero > picture img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero > picture img {
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 251, 0.96) 0%, rgba(255, 253, 251, 0.83) 42%, rgba(255, 253, 251, 0.2) 76%),
    linear-gradient(180deg, rgba(255, 253, 251, 0.15), rgba(251, 244, 238, 0.68));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.55rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 580px;
  margin: 22px 0 0;
  color: #5d5356;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: #9d6873;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-actions,
.visit-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: white;
  background: #2f2729;
  box-shadow: 0 16px 36px rgba(47, 39, 41, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: var(--blush);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(45, 37, 39, 0.14);
}

.button.dark {
  color: var(--ink);
}

.intro-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

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

.intro-grid article {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.intro-grid strong,
.intro-grid span {
  display: block;
}

.intro-grid span {
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.94rem;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.split,
.layette-grid,
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.section p {
  color: var(--muted);
}

.soft-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, white, var(--cream));
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: #9d5565;
  font-weight: 800;
}

.categories {
  background: linear-gradient(180deg, var(--cream), #ffffff);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.with-action {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

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

.category-grid article,
.offer-card,
blockquote {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.category-grid article:nth-child(2n),
.testimonial-grid blockquote:nth-child(2n) {
  background: rgba(220, 236, 242, 0.34);
}

.category-grid article:nth-child(3n) {
  background: rgba(185, 203, 191, 0.28);
}

.category-grid span {
  display: block;
  margin-bottom: 34px;
  color: #a9797f;
  font-weight: 900;
}

.category-grid p,
.offer-card p,
blockquote p {
  margin-bottom: 0;
}

.offers {
  background: #fff;
}

.offer-card {
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  display: block;
  height: 5px;
  margin: -24px -24px 22px;
  background: linear-gradient(90deg, var(--blush), var(--sage), var(--sky));
}

.offer-card .tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(247, 220, 227, 0.75);
  color: #8e5361;
  font-size: 0.78rem;
  font-weight: 850;
}

.offer-price {
  margin: 16px 0 18px;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 900;
}

.offer-card .button {
  width: 100%;
}

.layette {
  background: linear-gradient(135deg, #fff, var(--cream) 52%, rgba(220, 236, 242, 0.45));
}

.layette picture,
.gallery figure,
.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.layette img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 300px;
  gap: 14px;
}

.gallery figure {
  position: relative;
  margin: 0;
  min-height: 0;
}

.gallery figure.large {
  grid-row: span 2;
}

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

.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 800;
}

.testimonials {
  background: var(--cream);
}

blockquote {
  margin: 0;
}

blockquote p {
  color: #51484b;
  font-size: 1.04rem;
}

cite {
  display: block;
  margin-top: 18px;
  color: #9d6873;
  font-style: normal;
  font-weight: 800;
}

.visit address {
  margin: 20px 0;
  color: #554b4e;
  font-style: normal;
  font-weight: 700;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.info-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--ink);
  font-weight: 850;
}

.info-list dd {
  margin: 3px 0 0;
  color: var(--muted);
}

.map-wrap {
  min-height: 430px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.contact {
  padding-top: 0;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blush), #fff 50%, var(--sky));
  border: 1px solid rgba(45, 37, 39, 0.1);
}

.contact-band h2 {
  max-width: 720px;
}

.site-footer {
  padding: 56px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #2f2729;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 0.95fr;
  gap: 28px;
}

.footer-brand {
  color: white;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: white;
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
}

.site-footer a {
  margin: 8px 0;
}

.site-footer p {
  margin: 14px 0 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2bbf6a;
  color: white;
  box-shadow: 0 18px 40px rgba(43, 191, 106, 0.34);
}

.float-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

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

  .menu {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 251, 0.96);
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 13px 12px;
  }

  .menu .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 253, 251, 0.96) 0%, rgba(255, 253, 251, 0.8) 45%, rgba(255, 253, 251, 0.38) 100%),
      linear-gradient(90deg, rgba(255, 253, 251, 0.78), rgba(255, 253, 251, 0.12));
  }

  .hero > picture img {
    object-position: 64% center;
  }

  .intro-grid,
  .category-grid,
  .offer-grid,
  .testimonial-grid,
  .split,
  .layette-grid,
  .visit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.with-action,
  .contact-band,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery figure.large {
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    padding-top: 96px;
    align-items: start;
  }

  .hero-content {
    padding-top: 22px;
  }

  .hero-actions,
  .visit-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro-strip {
    margin-top: -18px;
  }

  .section {
    padding: 64px 0;
  }

  .category-grid article,
  .offer-card,
  blockquote,
  .soft-panel {
    padding: 20px;
  }

  .offer-card::before {
    margin: -20px -20px 18px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 340px;
  }

  .float-whatsapp {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .section,
  .intro-grid article,
  .offer-card,
  .category-grid article,
  .gallery figure,
  blockquote {
    animation: rise 700ms ease both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
