/* ============================================================
   Dimolise Gelato — style.css
   Paleta: Verde #144735 · Dourado #e5b961 · Off-white #fcecd4
   Tipografia: 'Aburo', 'Nunito' (fallback web)
   ============================================================ */

/* ── Watermark heart-m ── */
.watermark {
  position: fixed;
  bottom: -8%;
  right: -5%;
  width: min(35vw, 420px);
  pointer-events: none;
  z-index: 0;
  opacity: .06;
}
.watermark svg { width: 100%; height: auto; }

/* ── Headline ── */
.headline {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 300;
  color: #fcecd4;
  line-height: 1.35;
  letter-spacing: .01em;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .headline { margin-bottom: 1.5rem; }
}

/* ── Subline ── */
.subline {
  font-size: clamp(.75rem, 1.8vw, .9rem);
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fcecd4;
  opacity: .55;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.headline em {
  font-style: normal;
  color: #e5b961;
  font-weight: 300;
}

/* ── Location badge ── */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid rgba(229,185,97,.4);
  border-radius: 2rem;
  padding: .55em 1.4em;
  font-size: .6875rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #e5b961; /* #3: solid color, passes WCAG AA */
  margin-bottom: clamp(2rem, 6vw, 4rem);
  transition: border-color .3s, background .3s;
}
.location-badge:hover {
  background: rgba(229,185,97,.08);
  border-color: rgba(229,185,97,.7);
}

/* ── Gold pattern strip ── */
.pattern-strip {
  width: 100%;
  height: clamp(72px, 12vw, 112px); /* #4: scales with viewport */
  background-color: #e5b961;
  overflow: hidden;
  flex-shrink: 0;
}
.pattern-strip svg { display: block; height: 100%; }

/* ── Footer ── */
.footer {
  background: #e5b961;
  border-top: 1px solid rgba(20,71,53,.2);
  padding: 1rem 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: .6875rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: lowercase;
  color: rgba(20,71,53,.85);
  flex-shrink: 0;
  gap: .75rem;
  flex-wrap: wrap;
}
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: rgba(20,71,53,.85);
  text-decoration: none;
  transition: color .2s;
}
.footer-instagram:hover { color: #144735; }
.footer-sep { color: rgba(20,71,53,.4); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .a { opacity: 1; animation: none; }
}
