:root {
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --text: #303030;
  --muted: #666666;
  --brand: #de1898;
  --brand-dark: #a90f72;
  --brand-soft: #fff0fa;
  --secondary: #303030;
  --secondary-soft: #f4f4f4;
  --white: #ffffff;
  --line: rgba(48, 48, 48, 0.12);
  --line-brand: rgba(222, 24, 152, 0.26);
  --shadow: 0 24px 70px rgba(48, 48, 48, 0.10);
  --shadow-brand: 0 18px 45px rgba(222, 24, 152, 0.24);
  --radius: 0;
  --container: min(1160px, calc(100% - 40px));
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  padding-bottom: 84px;
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 99;
  padding: 10px 14px;
  background: var(--brand);
  color: var(--white);
  border-radius: 0;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transition: background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(48, 48, 48, 0.10);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 210px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(222, 24, 152, 0.18));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .main-nav {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line-brand);
}

.main-nav a {
  padding: 10px 14px;
  color: var(--white);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled .main-nav a {
  color: var(--secondary);
  text-shadow: none;
}

.main-nav a:hover {
  color: var(--white);
  background: var(--brand);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  background-image: url('../img/hero-placeholder.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(48, 48, 48, 0.82) 0%, rgba(48, 48, 48, 0.42) 44%, rgba(222, 24, 152, 0.50) 100%),
    radial-gradient(circle at 82% 20%, rgba(222, 24, 152, 0.56), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.18), transparent 28%);
}

.hero-decoration {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 0;
  pointer-events: none;
}

.hero-decoration-one {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 18%;
  box-shadow: inset 0 0 80px rgba(222, 24, 152, 0.18);
  animation: floatOne 7s ease-in-out infinite;
}

.hero-decoration-two {
  width: 220px;
  height: 220px;
  left: 8%;
  bottom: 12%;
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.16);
  animation: floatTwo 9s ease-in-out infinite;
}

.hero-content {
  max-width: 840px;
  padding-top: 112px;
  padding-bottom: 72px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--white);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
  opacity: 0.86;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-title);
  line-height: 0.98;
  font-weight: 700;
}

h1 {
  max-width: 840px;
  font-size: clamp(56px, 9vw, 118px);
  letter-spacing: -0.045em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

h2 {
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -0.035em;
  color: var(--secondary);
}

h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--brand);
  letter-spacing: -0.025em;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255, 255, 255, 0.90);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.30);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 0;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  color: var(--secondary);
  background: var(--white);
}

.btn-outline {
  color: var(--brand);
  border-color: var(--line-brand);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(222, 24, 152, 0.12);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 34px;
  height: 54px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 0;
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 5px;
  height: 5px;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 0;
  animation: scrollDot 1.8s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 138px) 0;
  background: var(--white);
}

.welcome-section::before,
.gallery-section::before,
.reviews-section::before,
.map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(222, 24, 152, 0.08), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(48, 48, 48, 0.035), transparent 28%);
}

.section > .container {
  position: relative;
  z-index: 1;
}

.welcome-grid,
.map-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) 1fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.welcome-copy {
  max-width: 900px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line-brand);
  border-radius: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.welcome-copy h3 {
  margin-top: 18px;
}

.welcome-copy p,
.section-heading p,
.map-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.reviews-section,
.map-section {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.reviews-widget {
  border: 1px solid var(--line-brand);
  border-radius: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reviews-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 44px 20px;
  background:
    linear-gradient(135deg, rgba(222, 24, 152, 0.08), rgba(255, 255, 255, 0.92) 52%, rgba(48, 48, 48, 0.04));
}

.reviews-placeholder h3 {
  margin-top: 10px;
}

.reviews-placeholder p {
  margin: 10px 0;
  color: var(--muted);
}

.reviews-placeholder code {
  padding: 10px 14px;
  border-radius: 0;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid var(--line-brand);
}

.stars {
  color: var(--brand);
  letter-spacing: 0.18em;
  font-size: 24px;
}

.carousel {
  position: relative;
  border: 1px solid var(--line-brand);
  border-radius: 0;
  overflow: hidden;
  background: var(--secondary-soft);
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 520ms cubic-bezier(.22,.72,.18,1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 0;
  background: rgba(222, 24, 152, 0.82);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-50%) scale(1.04);
}

.carousel-prev {
  left: 18px;
}

.carousel-next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--brand);
}

.map-copy {
  position: sticky;
  top: 122px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line-brand);
  border-radius: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-copy .btn {
  margin-top: 28px;
}

.map-embed {
  min-height: 520px;
  border: 1px solid var(--line-brand);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--secondary-soft);
}

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

.site-footer {
  padding: 54px 0 44px;
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand img {
  width: 220px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 12px 24px rgba(222, 24, 152, 0.24));
}

.footer-data h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 34px;
}

.footer-data p,
.footer-brand p,
.footer-credit p {
  margin: 0;
}

.footer-credit a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.sticky-contact {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 30;
  width: min(520px, calc(100% - 24px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  background: rgba(48, 48, 48, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 0;
  color: var(--white);
  background: var(--brand);
  font-weight: 900;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.sticky-btn:hover {
  transform: translateY(-1px);
  background: var(--brand-dark);
}

.sticky-btn.whatsapp {
  background: #1f8d54;
}

.sticky-btn.whatsapp:hover {
  background: #187a48;
}

.reveal,
.reveal-up {
  opacity: 0;
  transform: translateY(26px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal-up {
  animation: revealUp 850ms cubic-bezier(.18,.85,.24,1) forwards;
}

.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 240ms; }
.delay-3 { animation-delay: 360ms; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

@keyframes floatOne {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-24px, 18px, 0); }
}

@keyframes floatTwo {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, -16px, 0); }
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 22px); }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 84px;
  }

  .brand img {
    width: 170px;
  }

  .main-nav {
    display: none;
  }

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

  .welcome-grid,
  .map-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-copy {
    position: static;
  }

  .carousel-slide {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
  }

  .sticky-contact {
    bottom: 10px;
    border-radius: 0;
  }

  .sticky-btn {
    min-height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
